[jboss-jira] [JBoss JIRA] (AS7-4043) Expose additional web subsystem metrics
Torben Jaeger (JIRA)
jira-events at lists.jboss.org
Mon Apr 2 14:34:47 EDT 2012
[ https://issues.jboss.org/browse/AS7-4043?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12681064#comment-12681064 ]
Torben Jaeger commented on AS7-4043:
------------------------------------
I have issued https://github.com/jbossas/jboss-as/pull/1946
> Expose additional web subsystem metrics
> ---------------------------------------
>
> Key: AS7-4043
> URL: https://issues.jboss.org/browse/AS7-4043
> Project: Application Server 7
> Issue Type: Feature Request
> Components: Web
> Reporter: Brian Stansberry
> Assignee: Remy Maucherat
>
> A user has requested that some further web subsystem metrics be exposed via the management interface:
> "When we run JVM with "-Dorg.apache.tomcat.util.ENABLE_MODELER=true"
> option, we can get currentThreadsBusy via JMX.
> e.g.
> ObjectName poolObjName = new
> ObjectName("jboss.web:type=ThreadPool,name=ajp-0.0.0.0-0.0.0.0-8009");
> ajpCurrentThreadsBusy = ((Integer) pfServer.getAttribute(poolObjName,
> "currentThreadsBusy")).intValue();
> It is nice if we could get the information via CLI like:
> /subsystem=web/connector=ajp13:read-attribute(name=current-threads-busy)
> Additionally, We also would like to get activeSessionCount. We can get
> the information via JMX like:
> ObjectName sessionObjName = new
> ObjectName("jboss.web:type=Manager,path=/tpcw,host=default-host");
> activeSessions = ((Long) pfServer.getAttribute(sessionObjName,
> "activeSessionCount")).intValue();
> And it is nice if we could get the information with CLI like:
> /deployment=tpcw.war/subsystem=web/servlet=TPCWServletWithEncoding:read-attribute(name=active-session-count)"
> I don't think the active-session-count attribute belongs under the "servlet" resource though, since sessions are not associated with servlets. A new resource for the session manager would be needed.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list