Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can I check heap usage of a running JVM from the commandline, I mean the actual usage rather than the max amount allocated with Xmx.

I need it to be commandline because I don't have access to a windowing environment, and I want script based on the value , the application is running in Jetty Application server

share|improve this question

2 Answers

up vote 6 down vote accepted

You can use jstat, like :

 jstat -gc pid

Full docs here : http://docs.oracle.com/javase/1.5.0/docs/tooldocs/share/jstat.html

share|improve this answer
Thankyou looks like what I want, might take a while to understand all the options though, I was basically looking for how much of the heap is used – Paul Taylor Jan 22 at 17:55
1  
so i think OU is the key column, with OC showing the max that was allocated – Paul Taylor Jan 23 at 21:00

If you start execution with gc logging turned on you get the info on file. Otherwise 'jmap -heap ' will give you what you want. See the jmap doc page for more.

share|improve this answer
I should add that jmap should not be used in a production environment unless absolutely needed. – Erik Jan 22 at 17:53

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.