vote up 1 vote down star

I've gone through the process on this page to expose the JMX interface of a web application.

I've managed to view the exposed interface on the Tomcat JMX proxy but when I load JConsole and look for the exposed mbean interface I can't find anything related to the attributes and operations exposed.

Thre is no specific entry on jconsole for the web app so I figured it might be under the TOMCAT jmx entry. It's not. (bare in mind, I did manage to see it on the tomcat jmx proxy page).

How can I manage my web application locally? Why is JConsole not showing it?

flag

79% accept rate
Which version of Tomcat, and which version of Java? – skaffman Aug 20 at 14:14
java 1.6 with tomcat 6.0 – Ben Aug 21 at 17:41
I've managed to do this. I'm writing a post about it and will post it as soon as it's done. – Ben Sep 1 at 12:33

1 Answer

vote up 1 vote down check

I've managed to fix this by doing a few basic steps -

  1. In the webapp context listener contextInitialized method, I instantiated a singleton class that will run and implement the mbean (the servlet itself cannot implement an mbean because it only wakes up to take requests from the server).
  2. The servlet "informs" the singleton of every operation that we want to monitor and the singleton is the one that actually reports this through jmx.
  3. In the singleton I registered with the mbean server with this command:

    ManagementFactory.getPlatformMBeanServer().registerMBean(this, name);

Thats it. (In a nut shell)

link|flag

Your Answer

Get an OpenID
or

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