vote up 1 vote down star

I'm trying to use JMX API to get active session counts for a web application.

  1. Is it possible to use JMX API to get this kind of information?
  2. If yes, how reliable would it be?
  3. Any example code on how to get this done?

I've been reading JMX tutorial and documentation, but they are giving me the overview of what the technology is. I just can't pinpoint to what I need, yet.

flag

3 Answers

vote up 2 vote down check

You can accomplish this by using something like JConsole or JVisualVM once you configure your app server to expose a JMX port. You don't mention which app server you're using but for Tomcat, it's described here: http://tomcat.apache.org/tomcat-5.5-doc/monitoring.html. Once you connect with JConsole, Tomcat exposes an MBean which has session information but again it depends which container you use.

link|flag
The question is tagged "Jboss", so it is Tomcat, but the jboss flavour of it. It probably won't have the standard Tomcat JMX layer. – skaffman Jul 12 at 16:20
vote up 1 vote down

To track the sessions you could use an HttpSessionListener . If you want to expose the active sessions via JMX, you could register a mbean and call it from other applications(see JMX documentation).

link|flag
vote up 0 vote down

JBoss already exposes the active session count via JMX, but only across the whole server, not per webapp. If you only have one webapp being used, then that should be OK for you.

Go the JMX console on port 8080, and look for the entry called host=localhost,path=/,type=Manager. Inside that you'll find a entry for active session count.

link|flag

Your Answer

Get an OpenID
or

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