enh(jvm/jmx): change some metrics name
This commit is contained in:
parent
1a701de7f4
commit
1e1cde2654
|
@ -48,7 +48,7 @@ sub set_counters {
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{ label => 'loaded', nlabel => 'class.loaded.total.count', set => {
|
{ label => 'loaded', nlabel => 'class.loaded.count', set => {
|
||||||
key_values => [ { name => 'TotalLoadedClassCount', diff => 1 } ],
|
key_values => [ { name => 'TotalLoadedClassCount', diff => 1 } ],
|
||||||
output_template => 'loaded: %s',
|
output_template => 'loaded: %s',
|
||||||
perfdatas => [
|
perfdatas => [
|
||||||
|
@ -56,7 +56,7 @@ sub set_counters {
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{ label => 'unloaded', nlabel => 'class.unloaded.total.count', set => {
|
{ label => 'unloaded', nlabel => 'class.unloaded.count', set => {
|
||||||
key_values => [ { name => 'UnloadedClassCount', diff => 1 } ],
|
key_values => [ { name => 'UnloadedClassCount', diff => 1 } ],
|
||||||
output_template => 'unloaded: %s',
|
output_template => 'unloaded: %s',
|
||||||
perfdatas => [
|
perfdatas => [
|
||||||
|
|
|
@ -40,7 +40,7 @@ sub set_counters {
|
||||||
];
|
];
|
||||||
|
|
||||||
$self->{maps_counters}->{gc} = [
|
$self->{maps_counters}->{gc} = [
|
||||||
{ label => 'time', nlabel => 'gc.collection.elapsed_time.milliseconds', set => {
|
{ label => 'time', nlabel => 'gc.collection.time.elapsed.milliseconds', set => {
|
||||||
key_values => [ { name => 'time', diff => 1 }, { name => 'display' } ],
|
key_values => [ { name => 'time', diff => 1 }, { name => 'display' } ],
|
||||||
output_template => 'collection time: %s ms',
|
output_template => 'collection time: %s ms',
|
||||||
perfdatas => [
|
perfdatas => [
|
||||||
|
|
Loading…
Reference in New Issue