JVM Monitor plugin

Is there documentation on how to read the graphs from this plugin? Or can someone explain what the graphs mean.

Thanks,

Hi,

as this is still experimental you may want to look at the source code. The plugin uses five Java MXBeans

getClassLoadingMXBean();
getCompilationMXBean();
getMemoryMXBean();
getThreadMXBean();
getMemoryPoolMXBeans();

which are described here: http://java.sun.com/j2se/1.5.0/docs/api/java/lang/management/ManagementFactory.h tml

So the Classloading.png images displays the counters which are described on http://java.sun.com/j2se/1.5.0/docs/api/java/lang/management/ClassLoadingMXBean. html

If you have Fastpath installed you may notice that ThreadCount.png shows that “total threads created” is always increasing.

LG