aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelipe Reyes <felipe.reyes@canonical.com>2014-11-18 14:32:20 -0300
committerAdam Stokes <adam.stokes@ubuntu.com>2014-11-18 14:08:13 -0600
commita85f58cb566883532ba0df93ecf0dba5bc190fc3 (patch)
tree4857cb250be42dc96e44a108c23f8fce860fa734
parent02af6f94a9212dd6f083374d8dd0a35570210ef6 (diff)
downloadsos-a85f58cb566883532ba0df93ecf0dba5bc190fc3.tar.gz
[corosync/pacemaker] Collect corosync-cfgtool -s output / add Pacemaker support
This patch improves HA clustering information gathering adding a new a new plugin for Pacemaker. Signed-off-by: Felipe Reyes <felipe.reyes@canonical.com> Signed-off-by: Adam Stokes <adam.stokes@ubuntu.com>
-rw-r--r--sos/plugins/corosync.py1
-rw-r--r--sos/plugins/pacemaker.py32
2 files changed, 33 insertions, 0 deletions
diff --git a/sos/plugins/corosync.py b/sos/plugins/corosync.py
index db9b5473..27642a0e 100644
--- a/sos/plugins/corosync.py
+++ b/sos/plugins/corosync.py
@@ -34,6 +34,7 @@ class Corosync(Plugin):
"corosync-quorumtool -s",
"corosync-cpgtool",
"corosync-objctl -a",
+ "corosync-cfgtool -s",
"corosync-fplay",
"corosync-objctl -w runtime.blackbox.dump_state=$(date +\%s)",
"corosync-objctl -w runtime.blackbox.dump_flight_data=$(date +\%s)"
diff --git a/sos/plugins/pacemaker.py b/sos/plugins/pacemaker.py
new file mode 100644
index 00000000..802b40fd
--- /dev/null
+++ b/sos/plugins/pacemaker.py
@@ -0,0 +1,32 @@
+# 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 Pacemaker(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin):
+ "HA Cluster resource manager"
+
+ plugin_name = "pacemaker"
+ profiles = ("cluster", )
+ packages = ("pacemaker", )
+
+ def setup(self):
+ self.add_copy_spec([
+ "/var/lib/pacemaker/cib/cib.xml"
+ ])
+ self.add_cmd_output([
+ "crm status",
+ "crm configure show",
+ ])