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 committed by Cameron Sparr
parent 07f0d561dc
commit de82c7d5ac
1 changed files with 10 additions and 0 deletions

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