diff options
author | Jorge Niedbalski <jorge.niedbalski@canonical.com> | 2016-05-19 14:23:42 -0400 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2016-05-25 17:31:25 +0100 |
commit | d2cf54881a4a4e3d676dff5e2ccd182ce6591648 (patch) | |
tree | 87e39cba5940d2e968323e0a9ef7c3b4282a37d7 | |
parent | e4ea92277db4fb04f8097b63bae0643ae4288004 (diff) | |
download | sos-d2cf54881a4a4e3d676dff5e2ccd182ce6591648.tar.gz |
[plugins] New LXD plugin
This ubuntu-specific plugin gathers logs, internal database
and a list of the current containers on a LXD host.
Signed-off-by: Jorge Niedbalski <jorge.niedbalski@canonical.com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/lxd.py | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/sos/plugins/lxd.py b/sos/plugins/lxd.py new file mode 100644 index 00000000..5efa4c03 --- /dev/null +++ b/sos/plugins/lxd.py @@ -0,0 +1,46 @@ +# Copyright (C) 2016 Jorge Niedbalski <niedbalski@ubuntu.com> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +from sos.plugins import Plugin, UbuntuPlugin + + +class LXD(Plugin, UbuntuPlugin): + """LXD is a containers hypervisor. + """ + plugin_name = 'lxd' + + def setup(self): + self.add_copy_spec([ + "/var/lib/lxd/lxd.db", + "/etc/default/lxc-bridge", + ]) + + self.add_copy_spec([ + "/var/log/lxd*" + ], sizelimit=self.get_option("log_size")) + + # List of containers available on the machine + self.add_cmd_output([ + "lxc list", + "lxc profile list", + "lxc image list", + ]) + + self.add_cmd_output([ + "find /var/lib/lxd -maxdepth 2 -type d -ls", + ], suggest_filename='var-lxd-dirs.txt') + +# vim: set et ts=4 sw=4 : |