diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2012-12-04 22:00:13 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2012-12-04 22:00:13 +0000 |
commit | 326981727f9682aa1e27ebe6382e1d111b5c47df (patch) | |
tree | 183c041f47cc376899c5599bcca8a2d48bf69e33 | |
parent | 5de99c52109c966ca56bb5fcdf8fd0683d5ff8a2 (diff) | |
download | sos-326981727f9682aa1e27ebe6382e1d111b5c47df.tar.gz |
Update gluster module to match current rhel-6
-rw-r--r-- | sos/plugins/gluster.py | 100 |
1 files changed, 97 insertions, 3 deletions
diff --git a/sos/plugins/gluster.py b/sos/plugins/gluster.py index ef55b7df..957be6b4 100644 --- a/sos/plugins/gluster.py +++ b/sos/plugins/gluster.py @@ -12,15 +12,109 @@ ## along with this program; if not, write to the Free Software ## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +import time import os.path +import os +import string from sos.plugins import Plugin, RedHatPlugin class gluster(Plugin, RedHatPlugin): '''gluster related information''' - files = ('/etc/glusterd',) + statedump_dir = '/tmp/glusterfs-statedumps' + packages = ["glusterfs", "glusterfs-core"] + files = ["/etc/glusterd", "/var/lib/glusterd"] + + def defaultenabled(self): + return True + + def get_volume_names(self, volume_file): + """Return a dictionary for which key are volume names according to the + output of gluster volume info stored in volume_file. + """ + out=[] + fp = open(volume_file, 'r') + for line in fp.readlines(): + if not line.startswith("Volume Name:"): + continue + volname = line[14:-1] + out.append(volname) + fp.close() + return out + + def make_preparations(self, name_dir): + try: + os.mkdir(name_dir); + except: + pass + fp = open ('/tmp/glusterdump.options', 'w'); + data = 'path=' + name_dir + '\n'; + fp.write(data); + fp.write('all=yes'); + fp.close(); + + def wait_for_statedump(self, name_dir): + statedumps_present = 0; + statedump_entries = os.listdir(name_dir); + for statedump_file in statedump_entries: + statedumps_present = statedumps_present+1; + last_line = 'tmp'; + ret = -1; + while ret == -1: + last_line = file(name_dir + '/' + statedump_file, "r").readlines()[-1]; + ret = string.count (last_line, 'DUMP_END_TIME'); + + def postproc(self): + if not os.path.exists(self.statedump_dir): + return + try: + for dirs in os.listdir(self.statedump_dir): + os.remove(os.path.join(self.statedump_dir,dirs)); + os.rmdir(self.statedump_dir); + os.unlink('/tmp/glusterdump.options'); + except: + pass def setup(self): - self.addForbiddenPath("/etc/glusterd/geo-replication/secret.pem") - self.addCopySpec("/etc/glusterd") + self.collectExtOutput("/usr/sbin/gluster peer status") + + # check package version handling rename of glusterfs-core -> glusterfs + pkg = self.policy().pkgByName("glusterfs-core"); + if not pkg: + pkg = self.policy().pkgByName("glusterfs"); + # need to handle "no package" case for users who enable with -e/-o + if not pkg: + return + + gluster_major = int((pkg["version"])[:1]) + gluster_minor = int((pkg["version"])[2:3]) + if (gluster_major == 3) and (gluster_minor <= 2): + self.addCopySpec("/etc/glusterd/") + self.addForbiddenPath("/etc/glusterd/geo-replication/secret.pem") + else: + self.addCopySpec("/var/lib/glusterd/") + self.addForbiddenPath("/var/lib/glusterd/geo-replication/secret.pem") + + # collect unified file and object storage configuration + self.addCopySpec("/etc/swift/") + + # glusterfs-server rpm scripts stash this on migration to 3.3.x + self.addCopySpec("/etc/glusterd.rpmsave") + + # common to all versions + self.addCopySpec("/etc/glusterfs") + + self.make_preparations(self.statedump_dir) + #self.collectExtOutput("killall -USR1 glusterfs glusterfsd") + os.system("killall -USR1 glusterfs glusterfsd"); + # let all the processes catch the signal and create statedump file + # entries. + time.sleep(1) + self.wait_for_statedump(self.statedump_dir) + self.addCopySpec('/tmp/glusterdump.options') + self.addCopySpec(self.statedump_dir) + + self.collectExtOutput("gluster volume status") + # collect this last as some of the other actions create log entries self.addCopySpec("/var/log/glusterfs") + |