Hi. After a lot of discussion on this forum for monitoring NFS hang issues, I am using node_filesystem_device_error to see if my NFS mount is hanging or not.
Now, since node_filesystem_device_error is basically a statfs call, there can be more than one reason for statfs call to fail. So, if node_filesystem_device_error == 1, is there any way to find out because if which error has the statfs call failed?
Eg. Currently, node_filesystem_device_error == 1 on 2 different NFS mounts because of 2 different reasons, one of the mount is hung and for the other one when I checked I found out statfs call is failing because of "Stale file handle".
So, is there any way to get these errors without logging into the machine?
Thanks in advance!