Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.