contrib/GenerixJMX.conf: Add some example configuration for Tomcat.
[collectd.git] / contrib / GenericJMX.conf
index 61a44b0..45c7cf9 100644 (file)
 
       <Value>
         Type "gauge"
+        InstancePrefix "loaded_classes"
+        #InstanceFrom ""
         Table false
         Attribute "LoadedClassCount"
-        InstancePrefix "loaded_classes"
       </Value>
     </MBean>
 
 
       <Value>
         Type "total_time_in_ms"
+        InstancePrefix "compilation_time"
+        #InstanceFrom ""
         Table false
         Attribute "TotalCompilationTime"
-        InstancePrefix "compilation_time"
       </Value>
     </MBean>
 
     # Garbage collector information
     <MBean "garbage_collector">
-      # Plugin instance:
+      ObjectName "java.lang:type=GarbageCollector,*"
       InstancePrefix "gc-"
       InstanceFrom "name"
-      ObjectName "java.lang:type=GarbageCollector,*"
 
       <Value>
         Type "invocations"
+        #InstancePrefix ""
+        #InstanceFrom ""
         Table false
         Attribute "CollectionCount"
-        # Type instance:
-        #InstancePrefix ""
       </Value>
 
       <Value>
         Type "total_time_in_ms"
+        InstancePrefix "collection_time"
+        #InstanceFrom ""
         Table false
         Attribute "CollectionTime"
-        # Type instance:
-        InstancePrefix "collection_time"
       </Value>
 
 #      # Not that useful, therefore commented out.
 #      <Value>
 #        Type "threads"
+#        #InstancePrefix ""
+#        #InstanceFrom ""
 #        Table false
 #        # Demonstration how to access composite types
 #        Attribute "LastGcInfo.GcThreadCount"
-#        # Type instance:
-#        #InstancePrefix ""
 #      </Value>
     </MBean>
 
       # Creates four values: committed, init, max, used
       <Value>
         Type "memory"
+        #InstancePrefix ""
+        #InstanceFrom ""
         Table true
         Attribute "HeapMemoryUsage"
-        # Type instance:
         InstancePrefix "heap-"
       </Value>
 
       # Creates four values: committed, init, max, used
       <Value>
         Type "memory"
+        #InstancePrefix ""
+        #InstanceFrom ""
         Table true
         Attribute "NonHeapMemoryUsage"
-        # Type instance:
-        InstancePrefix "nonheap-"
       </Value>
     </MBean>
 
 
       <Value>
         Type "memory"
+        #InstancePrefix ""
+        #InstanceFrom ""
         Table true
         Attribute "Usage"
+      </Value>
+    </MBean>
+
+    ### MBeans by Catalina / Tomcat ###
+    # The global request processor (summary for each request processor)
+    <MBean "catalina/global_request_processor">
+      ObjectName "Catalina:type=GlobalRequestProcessor,*"
+      InstancePrefix "request_processor-"
+      InstanceFrom "name"
+
+      <Value>
+        Type "io_octets"
         #InstancePrefix ""
+        #InstanceFrom ""
+        Table false
+        Attribute "bytesReceived"
+        Attribute "bytesSent"
+      </Value>
+
+      <Value>
+        Type "total_requests"
+        #InstancePrefix ""
+        #InstanceFrom ""
+        Table false
+        Attribute "requestCount"
+      </Value>
+
+      <Value>
+        Type "total_time_in_ms"
+        InstancePrefix "processing"
+        #InstanceFrom ""
+        Table false
+        Attribute "processingTime"
+      </Value>
+    </MBean>
+
+    # Details for each  request processor
+    <MBean "catalina/detailed_request_processor">
+      ObjectName "Catalina:type=RequestProcessor,*"
+      InstancePrefix "request_processor-"
+      InstanceFrom "name"
+
+      <Value>
+        Type "io_octets"
+        #InstancePrefix ""
+        InstanceFrom "worker"
+        Table false
+        Attribute "bytesReceived"
+        Attribute "bytesSent"
+      </Value>
+
+      <Value>
+        Type "total_requests"
+        #InstancePrefix ""
+        InstanceFrom "worker"
+        Table false
+        Attribute "requestCount"
+      </Value>
+
+      <Value>
+        Type "total_time_in_ms"
+        InstancePrefix "processing-"
+        InstanceFrom "worker"
+        Table false
+        Attribute "processingTime"
+      </Value>
+    </MBean>
+
+    # Thread pool
+    <MBean "catalina/thread_pool">
+      ObjectName "Catalina:type=ThreadPool,*"
+      InstancePrefix "request_processor-"
+      InstanceFrom "name"
+
+      <Value>
+        Type "threads"
+        InstancePrefix "total"
+        #InstanceFrom ""
+        Table false
+        Attribute "currentThreadCount"
+      </Value>
+
+      <Value>
+        Type "threads"
+        InstancePrefix "running"
+        #InstanceFrom ""
+        Table false
+        Attribute "currentThreadsBusy"
       </Value>
     </MBean>