diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-06-06 21:45:41 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2014-06-06 21:45:41 +0100 |
commit | 18ff1137365fc6fa7e6db260343444484dd07fe2 (patch) | |
tree | 13f51d36c73c1489469d69b920d67deebd75a23c | |
parent | 1ad04afba3bbfdd20bd943749388e2751b25a3f1 (diff) | |
download | sos-18ff1137365fc6fa7e6db260343444484dd07fe2.tar.gz |
[docker] new plugin
Add basic support for docker-io:
https://www.docker.io/
Fixes #263.
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/docker.py | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/sos/plugins/docker.py b/sos/plugins/docker.py new file mode 100644 index 00000000..38225d1c --- /dev/null +++ b/sos/plugins/docker.py @@ -0,0 +1,40 @@ +## Copyright (C) 2014 Red Hat, Inc. Bryn M. Reeves <bmr@redhat.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, RedHatPlugin + +class Docker(Plugin, RedHatPlugin): + """Docker information + """ + + plugin_name = 'docker' + + def setup(self): + self.add_copy_specs([ + "/etc/udev/rules.d/80-docker.rules", + "/var/lib/docker/repositories-*" + ]) + + self.add_cmd_outputs([ + "docker info", + "docker ps", + "docker images" + ]) + +class RedHatDocker(Plugin, RedHatPlugin): + + packages = ('docker-io',) + +# vim: et ts=4 sw=4 |