aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPoornima <pkshiras@redhat.com>2015-04-09 18:47:58 +0530
committerBryn M. Reeves <bmr@redhat.com>2015-06-08 10:23:56 +0100
commitf1a7aea0f45485cbe12e95f38c6b0dc6ad12dd58 (patch)
tree7596d7189b1a2098eda37a9fe7a800c994170c55
parent8bde2ae429ae19f7827ecf360682ee50802bf611 (diff)
downloadsos-f1a7aea0f45485cbe12e95f38c6b0dc6ad12dd58.tar.gz
[openstack_sahara] add new plugin
Capture configuration and log data for the OpenStack Sahara project (formerly Savanna). Sahara is a tool to simplify the deployment of data-intensive applications in OpenStack environments. Signed-off-by: Poornima M. Kshirsagar pkshiras@redhat.com Signed-off-by: Bryn M. Reeves bmr@redhat.com
-rw-r--r--sos/plugins/openstack_sahara.py63
1 files changed, 63 insertions, 0 deletions
diff --git a/sos/plugins/openstack_sahara.py b/sos/plugins/openstack_sahara.py
new file mode 100644
index 00000000..f0b95e4a
--- /dev/null
+++ b/sos/plugins/openstack_sahara.py
@@ -0,0 +1,63 @@
+# Copyright (C) 2015 Red Hat, Inc.,Poornima M. Kshirsagar <pkshiras@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, DebianPlugin, UbuntuPlugin
+
+
+class OpenStackSahara(Plugin):
+ """OpenStack Sahara"""
+ plugin_name = 'openstack_sahara'
+ profiles = ('openstack',)
+
+ option_list = [("log", "gathers openstack sahara logs", "slow", True)]
+
+ def setup(self):
+ self.add_copy_spec("/etc/sahara/")
+ self.add_cmd_output("journalctl -u openstack-sahara-all")
+
+ if self.get_option("log"):
+ self.add_copy_spec("/var/log/sahara/")
+
+
+class DebianOpenStackSahara(OpenStackSahara, DebianPlugin, UbuntuPlugin):
+ """OpenStackSahara related information for Debian based distributions."""
+
+ packages = (
+ 'sahara-api',
+ 'sahara-common',
+ 'sahara-engine',
+ 'python-sahara',
+ 'python-saharaclient',
+ )
+
+ def setup(self):
+ super(DebianOpenStackSahara, self).setup()
+
+
+class RedHatOpenStackSahara(OpenStackSahara, RedHatPlugin):
+ """OpenStack sahara related information for Red Hat distributions."""
+
+ packages = (
+ 'openstack-sahara',
+ 'python-saharaclient'
+ )
+
+ def setup(self):
+ super(RedHatOpenStackSahara, self).setup()
+ self.add_copy_spec("/etc/sudoers.d/sahara")
+
+
+# vim: et ts=4 sw=4