diff options
author | Thiago Rafael Becker <thiago.becker@gmail.com> | 2022-11-30 15:11:59 -0300 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2022-12-05 10:36:53 -0500 |
commit | dfc023c35b85e4d4d665f18f89108f84d072e055 (patch) | |
tree | fb04fe1bc3e2d40f10849560bb7acfba47975ef0 | |
parent | 7f0d5fd93f6e3f04900903e775292b3d66531f60 (diff) | |
download | sos-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.py | 2 |
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", ]) |