1 / 3

JConsole (Java monitoring and Management Console)

JConsole (Java monitoring and Management Console). Application for real-time monitoring of Java apps Located at <JDK>binJConsole(.exe) Bundled with the JDK since 6.0 (not with the JRE) JConsole User Guide: http://download.oracle.com/javase/6/docs/technotes/guides/management/jconsole.html.

glenna-hunt
Download Presentation

JConsole (Java monitoring and Management Console)

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. JConsole(Java monitoring and Management Console) • Application for real-time monitoring of Java apps • Located at <JDK>\bin\JConsole(.exe) • Bundled with the JDK since 6.0 (not with the JRE) • JConsole User Guide: http://download.oracle.com/javase/6/docs/technotes/guides/management/jconsole.html

  2. Java Dump • Easiest way to see what’s going on in a running application (or one that has exited abnormally) • Usually named like this: javacore.20110604.072156.336.0002.txt (date.time, time, and serial number) • By default, it’s created on fatal native exceptions or out of memory • Can be triggered inside the application using com.ibm.jvm.Dump.JavaDump() • Manually induced by sending a break signal to the JRE: • Hitting Ctrl+Break on an interactive Java console • kill -3 <pid> (UNIX) • SendSignal.exe <pid> (Win32) • http://www.latenighthacking.com/projects/2003/sendSignal/SendSignal.exe • SendSignal64.exe <pid> (Win7/64bit) • Send me a note if SendSignal doesn’t work on your Win platform

  3. Final slide No title

More Related