We want to monitor the number of open file descriptors in our Tomcat app server. I stumbled across the MaxFileDescriptorCount and OpenFileDescriptorCount attributes of the java.lang OperatingSystem MBean. There doesn't seem to be a lot of information on these attributes, at least from what I can Google for.
My questions are:
- Is it safe to use these attributes for monitoring? In other words, can the values for these attributes be trusted?
- When looking at OpenFileDescriptorCount over JConsole, the value is "Unavailable". Can anybody explain why this is the case?
I know that there is the lsof command for Linux, but it would be nice if we can use some existing JMX-enabled monitoring tools to monitor these values.