mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Added GC duration as % of time.
This commit is contained in:
parent
2d31762a3d
commit
d07de8a4f7
1 changed files with 14 additions and 4 deletions
|
@ -180,10 +180,15 @@ var rows = [
|
|||
},
|
||||
{
|
||||
"value_field": "jvm.gc.collectors.ParNew.collection_time_in_millis",
|
||||
"title": "GC Young Gen duration",
|
||||
"title": "GC Young Gen duration (time %)",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true
|
||||
"scaleSeconds": true,
|
||||
"scale": 0.001 * 100,
|
||||
"grid": {
|
||||
"max": 100,
|
||||
"min": 0
|
||||
}
|
||||
},
|
||||
{
|
||||
"value_field": "jvm.gc.collectors.ParNew.collection_count",
|
||||
|
@ -200,9 +205,14 @@ var rows = [
|
|||
{
|
||||
"value_field": "jvm.gc.collectors.ConcurrentMarkSweep.collection_time_in_millis",
|
||||
"derivative": true,
|
||||
"scaleSeconds": true,
|
||||
"mode": "min",
|
||||
"title": "GC Old Gen duration"
|
||||
"title": "GC Old Gen duration (time %)",
|
||||
"scaleSeconds": true,
|
||||
"scale": 0.001 * 100,
|
||||
"grid": {
|
||||
"max": 100,
|
||||
"min": 0
|
||||
}
|
||||
},
|
||||
{
|
||||
"value_field": "jvm.gc.collectors.ConcurrentMarkSweep.collection_count",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue