Java Process Monitor

Man of Honour
Joined
17 Nov 2003
Posts
36,747
Location
Southampton, UK
Are there any utilities like Process Monitor/Explorer that will allow me to more closely see what a java application is doing? I'd like to see how much space is allocated for heap/stack, how much is going to be garbage collected etc. I'd like to see if a application is memory leaking or not and where the ram is going.
 
Jconsole - its park of the JDK :)

Edit - Ive used Jrockit mission control in the past to as its a bit more comprehensive than jconsole, pretty sure it worked with the Sun's JRE
 
Last edited:
Is there anyway to use this without installing the JDK? Its on a production system, so I don't really want to be installing anything I don't absolutely have to.
 
You can install it on any machine and remotely monitor the Java process (this is the advisable way of using it :))
As long as the machine has the relevant ports open and right permissions.


Not tried it for a while but pretty sure the JDK doesnt need installing either, you just need to set up a variable for java_home that points to the extracted dir
 
Back
Top Bottom