diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2019-03-01 17:16:23 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2019-03-01 17:16:23 +0000 |
commit | b141f1ada1f6777a16ee28adff13e10d56ce41ea (patch) | |
tree | b6164cb8b76f57e3d01b98d48affa49b1872cebf | |
parent | 36a82723dfc2734b18eede4b75708595345c9d7a (diff) | |
download | sos-b141f1ada1f6777a16ee28adff13e10d56ce41ea.tar.gz |
[xfs] add /sys/fs/xfs to XFS plugin
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/xfs.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sos/plugins/xfs.py b/sos/plugins/xfs.py index 45b24b4a..7c81cc1e 100644 --- a/sos/plugins/xfs.py +++ b/sos/plugins/xfs.py @@ -26,6 +26,9 @@ class Xfs(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): self.add_cmd_output("xfs_info %s" % (parts[1])) self.add_cmd_output("xfs_admin -l -u %s" % (parts[1])) - self.add_copy_spec('/proc/fs/xfs') + self.add_copy_spec([ + '/proc/fs/xfs', + '/sys/fs/xfs' + ]) # vim: set et ts=4 sw=4 : |