Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

4 Answers

up vote 3 down vote accepted

You can try JRockit Mission Control. It allows you to customize the user interface with your own graphs, tables and even dials for the MBean attributes you want to monitor.

alt text

The customized ui is stored in a workspace directory, by default in your home directory, but you can have several workspaces and start up Mission Control with the one you want to use.

jrcm.exe -data c:/application1
jrcm.exe -data c:/application2
share|improve this answer
Thanks, I started looking at that, definitely looks interesting and what I need. – noplay Dec 15 '09 at 13:36

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

share|improve this answer

Polling the JMX variables is relatively straightforward. The presentation is perhaps more of a pain.

For the charting component, you may want to check out JFreeChart. Although it's not a real-time charting package, it's actually quite performant for these type of applications. Check out some samples here.

share|improve this answer
Thanks for the info, I will look into the link. I was hoping there would be an existing package for this functionality. Monitoring and plotting metrics for an MBean should be something people do regularly. – noplay Dec 14 '09 at 17:48
Yes - I'm somewhat surprised there isn't a configurable app to do this easily available – Brian Agnew Dec 14 '09 at 18:01

JRDS will do what you want. It is a bit tricky to setup, but once you figure out the configuration you an have it create graphs for your JMX attributes. It uses RRD4j (like rrd but in java) under the covers so it can keep "rolled up" historical data for you as well.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.