Bug 795531 - Tomcat plugin: values of -1 are returned for thread pool related metrics on Tomcat Connectors when the connectors are configured to use an Executor (i.e. a shared thread pool)
Summary: Tomcat plugin: values of -1 are returned for thread pool related metrics on T...
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: None
Product: RHQ Project
Classification: Other
Component: Plugins
Version: 4.2
Hardware: Unspecified
OS: Unspecified
urgent
high
Target Milestone: ---
: JON 3.1.0
Assignee: Larry O'Leary
QA Contact: Mike Foley
URL:
Whiteboard:
Depends On:
Blocks: jon310-sprint11, rhq44-sprint11
TreeView+ depends on / blocked
 
Reported: 2012-02-20 19:27 UTC by Ian Springer
Modified: 2018-11-26 17:16 UTC (History)
4 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2013-03-14 15:06:35 UTC
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Bugzilla 822861 0 urgent CLOSED Tomcat 5 Connectors are not discovered at all 2021-02-22 00:41:40 UTC

Description Ian Springer 2012-02-20 19:27:05 UTC
For example, if server.xml contains:

<Service
      name="Catalina">

    <Executor name="tomcatThreadPool" namePrefix="catalina-exec-" maxThreads="150" minSpareThreads="5"/>

    <Connector
        port="9080"
        redirectPort="9443"
        executor="tomcatThreadPool"/>

Then the following metrics will return values of -1:

         <metric
            property="Catalina:type=ThreadPool,name=%handler%%address%-%port%:currentThreadsBusy"
            displayName="Threadpool Threads Active"
            description="Number of current busy threads."
            category="utilization"
            displayType="summary" />

         <metric
            property="Catalina:type=ThreadPool,name=%handler%%address%-%port%:currentThreadCount"
            displayName="Threadpool Threads Allocated"
            description="Number of current threads."
            category="utilization"
            displayType="summary" />

         <metric
            property="Catalina:type=ThreadPool,name=%handler%%address%-%port%:maxThreads"
            displayName="Threadpool Max Threads"
            description="Maximum number of threads that can be allocated for the ThreadPool."
            category="utilization"
            displayType="detail" />

The reason is that when the connector is configured to use an executor, the thread pool metrics are instead exposed by an Executor mbean. In this case, the RHQ metrics would instead have to look like:

<metric
            property="Catalina:type=Executor,name=tomcatThreadPool:activeCount"
            displayName="Shared Threadpool Threads Active"
            description="Number of current busy threads."
            category="utilization"
            displayType="summary" />

         <metric
            property="Catalina:type=Executor,name=tomcatThreadPool:poolSize"
            displayName="Shared Threadpool Threads Allocated"
            description="Number of current threads."
            category="utilization"
            displayType="summary" />

         <metric
            property="Catalina:type=Executor,name=tomcatThreadPool:maxThreads"
            displayName="Shared Threadpool Max Threads"
            description="Maximum number of threads that can be allocated for the ThreadPool."
            category="utilization"
            displayType="detail" />


The fix will be to make the impl of TomcatConnectorComponent smart enough to discern whether or not an executor is configured, and if so, obtain the metrics from the appropriate Executor mbean.

Comment 2 Ian Springer 2012-02-21 18:38:21 UTC
It's not huge. It's a few hours of dev, but then it will need to be tested on each of the major versions of Tomcat we support - 5, 6, and 7, which will take a few more hours. So probably 4-8 hours total.

Comment 3 John Mazzitelli 2012-04-12 20:56:26 UTC
(In reply to comment #2)
> It's not huge. It's a few hours of dev, but then it will need to be tested on
> each of the major versions of Tomcat we support - 5, 6, and 7, which will take
> a few more hours. So probably 4-8 hours total.

Ian - are you saying you recommend adding those three metric definitions to the descriptor (the ones that Larry put in the description of this issue?)

If so, I agree this should be easy. I'll assign this to me - but let me know if that's why you say it should be easy to implement. Because when I first read this, I thought it would not be trivial to do what Larry mentioned:

"The fix will be to make the impl of TomcatConnectorComponent smart enough to
discern whether or not an executor is configured, and if so, obtain the metrics
from the appropriate Executor mbean."

The way the plugin metric subsystem works, we'll attempt to collect ALL the metrics - so we'll still report -1 for those non-shared metrics. The user would just have to know to ignore those and to instead look at the Shared metrics when monitoring his systems. If this is Ok, then there isn't must we need to do other than add the new metrics and test with those different tomcat versions.

If there is something more we need to do, please comment.

Comment 4 John Mazzitelli 2012-04-13 17:56:58 UTC
After thinking about this, here's how I will implement this. This should be backwards compatible and will not require us to introduce three new metrics (and thus we won't have 6 metrics on each Tomcat server, where only 3 are used and 3 remain unused, per server). It will also allow the user to define their own shared executor name (there is nothing special about the name "tomcatThreadPool" so we can't hardcode that or assume that is what the user will use).

I will add a new plugin configuration property on the Connector resource:

               <c:simple-property
                  name="sharedExecutorName"
                  type="string"
                  description="If this Connector is configured to use a shared Executor for its thread pool, this is the name of that Executor. This is required to successfully collect threadpool metrics from a shared Executor used by the Connector. Leave this unset if the Connector is not using a shared Executor for its threadpool."
                  required="false" />

If this is not set, we do nothing special - we continue collecting the metrics from the original MBean as defined in the descriptor. This provides backwards compat - any old Tomcat servers already in inventory that is working, will continue to work.

If this is set, we will use a different MBean name, substituting the value of this property into the MBean object name, so we can collect the new metrics:

1) Catalina:type=ThreadPool,name=%handler%%address%-%port%:currentThreadsBusy
will be replaced with:
Catalina:type=Executor,name=<value of the new plugin config prop>:activeCount

2) Catalina:type=ThreadPool,name=%handler%%address%-%port%:currentThreadCount
will be replaced with:
Catalina:type=Executor,name=<value of the new plugin config prop>:poolSize

3) Catalina:type=ThreadPool,name=%handler%%address%-%port%:maxThreads
will be replaced with
Catalina:type=Executor,name=<value of the new plugin config prop>:maxThreads

Comment 5 John Mazzitelli 2012-04-13 20:59:38 UTC
git commit to master: 41eb05d5004470cbdaab4b2bc4ecfb082edaf8ce

Comment 6 John Mazzitelli 2012-04-13 21:15:54 UTC
there is one thing that we can still do - auto-discover the value for this new property during discovery.

I notice that the MBean for the Connector, e.g.: "Catalina:type=Connector,port=8080", has the attribute: "executorName".

If the connector is using a shared executor, this is the name of that Executor as defined in server.xml (i.e. its the value we want to store in this new plugin config prop).

If the connector is NOT using a shared executor, I see its value as "Internal" (at least on Tomcat 6 - we'd have to see if its this same Internal name for other versions).

In TomcatConnectorDiscoveryComponent, we could ask for the connector MBean's attribute value for "executorName" and pre-fill the plugin configuration with that value. This would allow those three metrics to begin getting collected ASAP without requiring an admin it manually go into the plugin config and setting its value in the GUI.

Comment 7 John Mazzitelli 2012-04-16 18:26:03 UTC
git commit to master d0707a4 

the new plugin config setting will be automatically set when appropriate - the discovery component will check to see if the Connector MBean has a executorName attribute that is something other than "Internal" - if it is, this is the executor name of the shared threadpool.

Comment 9 bkramer 2012-05-18 10:48:02 UTC
Clean JON 310 installation with tomcat 310 plugin jar, will return proper values for thread pool related metrics on Tomcat 6 Connectors when the connectors are configured to use an Executor. 

However, connectors for Tomcat 5 are not discovered at all. The following bugzilla has been raised to address this: 

https://bugzilla.redhat.com/show_bug.cgi?id=822861


Note You need to log in before you can comment on or make changes to this bug.