Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MBean Simple Graph Monitor

I have some JMX Beans that expose performance information in my application. I would like to have some facility to plot an attribute of an MBean in a graph for monitoring (a la Windows Perf Mon). I love the stuff that comes with JConsole and VisualVM, but I have not been able to find a nice plugin that will let me select an attribute on an MBean and monitor it. Anyone have any ideas?

like image 709
noplay Avatar asked Dec 14 '09 16:12

noplay


1 Answers

You can plot JMX numeric values in VisualVM, double-clicking on numeric attribute values will display a chart that plots changes in that numeric value.

For example, double-clicking on the CollectionTime attribute of the Garbage Collector MBean MarksweepCompact will plot the time spent performing garbage collection.

@see http://visualvm.java.net/mbeans_tab.html

like image 187
Adrian Muraru Avatar answered Sep 18 '22 13:09

Adrian Muraru