mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-27 11:24:42 +00:00
readd jmx (extracted) because it seems to be different from the jmx in the main munin distribution
This commit is contained in:
parent
933f0ea70b
commit
ddc46f88fd
10 changed files with 280 additions and 0 deletions
22
plugins/java/jmx/examples/java/java_cpu.conf
Normal file
22
plugins/java/jmx/examples/java/java_cpu.conf
Normal file
|
@ -0,0 +1,22 @@
|
|||
graph_args --upper-limit 100 -l 0
|
||||
graph_scale no
|
||||
graph_title CPU Usage
|
||||
graph_vlabel 1000* CPU time %
|
||||
graph_category Java
|
||||
graph_order java_cpu_time java_cpu_user_time
|
||||
|
||||
java_cpu_time.label cpu
|
||||
java_cpu_time.jmxObjectName java.lang:type=Threading
|
||||
java_cpu_time.jmxAttributeName CurrentThreadCpuTime
|
||||
java_cpu_time.type DERIVE
|
||||
java_cpu_time.min 0
|
||||
java_cpu_time.graph yes
|
||||
java_cpu_time.cdef java_cpu_time,3000000,/
|
||||
|
||||
java_cpu_user_time.label user
|
||||
java_cpu_user_time.jmxObjectName java.lang:type=Threading
|
||||
java_cpu_user_time.jmxAttributeName CurrentThreadUserTime
|
||||
java_cpu_user_time.type DERIVE
|
||||
java_cpu_user_time.min 0
|
||||
java_cpu_user_time.graph yes
|
||||
java_cpu_user_time.cdef java_cpu_user_time,3000000,/
|
Loading…
Add table
Add a link
Reference in a new issue