Is there any known command line tool to ask the JVM to see memory usage and thread dumps of a java program. something like a headless jvisualvm?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

You can use jstat to get gc information, jstack to get stack traces and jmap to get memory statistics and memory dumps for off-line inspection.

link|improve this answer
Don't forget jmap. – KaizenSoze Feb 9 at 20:04
@KaizenSoze Did you mean jhat? I mentioned jmap, but maybe you think I should add info about it? – Roger Lindsjö Feb 10 at 8:14
feedback

Ctrl+Break will produce a thread dump and various statistics.

This is documented, along with kill -QUIT, here.

link|improve this answer
What is break? . . – Mob Dec 9 '11 at 18:37
@Mob en.wikipedia.org/wiki/Break_key – Jonathon Dec 9 '11 at 18:39
feedback

Look into the official debugger, jdb. You have to run your java program with a certain flag, but then you should be able to look at a bunch of stuff from the commandline.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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