aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierguido Lambri <plambri@redhat.com>2013-07-06 21:21:42 +0100
committerBryn M. Reeves <bmr@redhat.com>2013-07-25 16:53:02 +0100
commitd65075a050097087a822381546a8b9bd1ab35220 (patch)
tree0fbef50cf3c1a3665eea1b62f91eba258fa8e1ce
parentb67718e053b823f9088af3479e7de73b3f13c5c9 (diff)
downloadsos-d65075a050097087a822381546a8b9bd1ab35220.tar.gz
Added XFS plugin
Signed-off-by: Pierguido Lambri <plambri@redhat.com>
-rw-r--r--sos/plugins/xfs.py40
1 files changed, 40 insertions, 0 deletions
diff --git a/sos/plugins/xfs.py b/sos/plugins/xfs.py
new file mode 100644
index 00000000..fe84b033
--- /dev/null
+++ b/sos/plugins/xfs.py
@@ -0,0 +1,40 @@
+### 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
+import os
+import re
+from itertools import *
+
+class Xfs(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin):
+ """information on the XFS filesystem
+ """
+
+ plugin_name = 'xfs'
+
+ option_list = [("logprint", 'gathers the log information', 'slow', False)]
+
+ def setup(self):
+ mounts = '/proc/mounts'
+ ext_fs_regex = r"^(/dev/.+).+xfs\s+"
+ for dev in izip(self.do_regex_find_all(ext_fs_regex, mounts)):
+ for e in dev:
+ parts = e.split(' ')
+ self.add_cmd_output("xfs_info %s" % (parts[1]))
+
+ if self.get_option('logprint'):
+ for dev in izip(self.do_regex_find_all(ext_fs_regex, mounts)):
+ for e in dev:
+ parts = e.split(' ')
+ self.add_cmd_output("xfs_logprint -c %s" % (parts[0]))