diff options
-rw-r--r-- | sos/plugins/gluster.py | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/sos/plugins/gluster.py b/sos/plugins/gluster.py index 5aa2d43b..07b1702e 100644 --- a/sos/plugins/gluster.py +++ b/sos/plugins/gluster.py @@ -108,9 +108,20 @@ class Gluster(Plugin, RedHatPlugin): volume_file = self.get_cmd_output_now("gluster volume info") if volume_file: for volname in self.get_volume_names(volume_file): - self.add_cmd_output("gluster volume geo-replication %s status" - % volname) - + self.add_cmd_output([ + "gluster volume geo-replication %s status" + % volname, + "gluster volume heal %s info" % volname, + "gluster volume heal %s info split-brain" + % volname, + "gluster snapshot list %s" % volname, + "gluster volume quota %s list" % volname, + "gluster volume rebalance %s status" + % volname, + "gluster snapshot info %s" % volname, + "gluster snapshot status %s" % volname]) + + self.add_cmd_output("gluster pool list") self.add_cmd_output("gluster volume status") # vim: set et ts=4 sw=4 : |