Using JConsole The JConsole graphical user interface is a monitoring tool that complies with the Java Management Extensions (JMX) specification. JConsole uses the extensive Java Virtual Machine (Java VM) hardware to provide information about the performance and resource consumption of applications running on the Java platform.
In the Java Platform Standard Edition (Java SE platform) 6, JConsole has been updated to present the look of Windows and GNOME desktops (other platforms will introduce the standard Java GUI). The screen captures presented in this document were taken from an instance of an interface running on Windows XP.
Starting JConsole The jconsole executable can be found in JDK_HOME / bin, where JDK_HOME is the directory where the Java Development Kit (JDK) is installed. If this directory is in your system path, you can start JConsole by simply typing jconsole at a command prompt. Otherwise, you must enter the full path to the executable.
Command syntax You can use JConsole to monitor both local applications and those that run on the same system as JConsole, as well as remote applications, namely those that run on other systems.
source: http://docs.oracle.com/javase/6/docs/technotes/guides/management/jconsole.html
source share