Adding few metrics example

Adding more metrics in example to make it easier to better understand the plugin
This commit is contained in:
Shahzheeb Khan
2016-04-07 14:31:28 -04:00
parent c6faf005cb
commit 9a750b7468

View File

@@ -22,6 +22,16 @@
[[inputs.jolokia.metrics]]
name = "heap_memory_usage"
jmx = "/java.lang:type=Memory/HeapMemoryUsage"
## This collect thread counts metrics.
[[inputs.jolokia.metrics]]
name = "thread_count"
jmx = "/java.lang:type=Threading/TotalStartedThreadCount,ThreadCount,DaemonThreadCount,PeakThreadCount"
## This collect number of class loaded/unloaded counts metrics.
[[inputs.jolokia.metrics]]
name = "class_count"
jmx = "/java.lang:type=ClassLoading/LoadedClassCount,UnloadedClassCount,TotalLoadedClassCount"
```
#### Description