aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThiago Rafael Becker <thiago.becker@gmail.com>2022-11-30 15:11:59 -0300
committerJake Hunsaker <jhunsake@redhat.com>2022-12-05 10:36:53 -0500
commitdfc023c35b85e4d4d665f18f89108f84d072e055 (patch)
treefb04fe1bc3e2d40f10849560bb7acfba47975ef0
parent7f0d5fd93f6e3f04900903e775292b3d66531f60 (diff)
downloadsos-dfc023c35b85e4d4d665f18f89108f84d072e055.tar.gz
[nfs] add nfsd information collection
Collect nfsd information: - The contents of /proc/fs/nfsd - The output of nfsdclnts Signed-off-by: Thiago Rafael Becker <thiago.becker@gmail.com>
-rw-r--r--sos/report/plugins/nfs.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/sos/report/plugins/nfs.py b/sos/report/plugins/nfs.py
index 11108676..0a3afb28 100644
--- a/sos/report/plugins/nfs.py
+++ b/sos/report/plugins/nfs.py
@@ -29,12 +29,14 @@ class Nfs(Plugin, IndependentPlugin):
"/var/lib/nfs/etab",
"/var/lib/nfs/xtab",
"/var/lib/nfs/rmtab",
+ "/proc/fs/nfsd",
])
self.add_cmd_output([
"rpcinfo -p localhost",
"nfsstat -o all",
"exportfs -v",
+ "nfsdclnts",
])