mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
added scale seconds to all relevant charts
This commit is contained in:
parent
7bdaf03df2
commit
0849aba30a
2 changed files with 20 additions and 10 deletions
|
@ -163,8 +163,7 @@ var rows = [
|
|||
"value_field": "os.swap.used_in_bytes",
|
||||
"title": "Used Swap"
|
||||
}
|
||||
],
|
||||
"notice": false
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "JVM Memory",
|
||||
|
@ -177,12 +176,14 @@ var rows = [
|
|||
{
|
||||
"value_field": "jvm.gc.collectors.ParNew.collection_time_in_millis",
|
||||
"title": "GC Young Gen duration",
|
||||
"derivative": true
|
||||
"derivative": true,
|
||||
"scaleSeconds": true
|
||||
},
|
||||
{
|
||||
"value_field": "jvm.gc.collectors.ParNew.collection_count",
|
||||
"title": "GC counts",
|
||||
"derivative": true
|
||||
"derivative": true,
|
||||
"scaleSeconds": true
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -192,11 +193,13 @@ var rows = [
|
|||
{
|
||||
"value_field": "jvm.gc.collectors.ConcurrentMarkSweep.collection_time_in_millis",
|
||||
"derivative": true,
|
||||
"scaleSeconds": true,
|
||||
"title": "GC Old Gen duration"
|
||||
},
|
||||
{
|
||||
"value_field": "jvm.gc.collectors.ConcurrentMarkSweep.collection_count",
|
||||
"derivative": true,
|
||||
"scaleSeconds": true,
|
||||
"title": "GC Old Gen count"
|
||||
}
|
||||
]
|
||||
|
@ -233,12 +236,14 @@ var rows = [
|
|||
{
|
||||
"value_field": "fs.data.disk_read_size_in_bytes",
|
||||
"title": "Disk reads (bytes)",
|
||||
"derivative": true
|
||||
"derivative": true,
|
||||
"scaleSeconds": true
|
||||
},
|
||||
{
|
||||
"value_field": "fs.data.disk_write_size_in_bytes",
|
||||
"title": "Disk writes (bytes)",
|
||||
"derivative": true
|
||||
"derivative": true,
|
||||
"scaleSeconds": true
|
||||
}
|
||||
],
|
||||
"notice": false
|
||||
|
@ -253,7 +258,8 @@ var rows = [
|
|||
{
|
||||
"value_field": "http.total_opened",
|
||||
"title": "HTTP opened",
|
||||
"derivative": true
|
||||
"derivative": true,
|
||||
"scaleSeconds": true
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -276,6 +282,7 @@ var rows = [
|
|||
{
|
||||
"value_field": "indices.indexing.index_total",
|
||||
"derivative": true,
|
||||
"scaleSeconds": true,
|
||||
"title": "Indexing requests"
|
||||
},
|
||||
{
|
||||
|
@ -285,6 +292,7 @@ var rows = [
|
|||
{
|
||||
"value_field": "indices.refresh.total_time_in_millis",
|
||||
"derivative": true,
|
||||
"scaleSeconds": true,
|
||||
"title": "Avg refresh time"
|
||||
}
|
||||
]
|
||||
|
@ -305,11 +313,13 @@ var rows = [
|
|||
{
|
||||
"value_field": "indices.search.query_total",
|
||||
"derivative": true,
|
||||
"scaleSeconds": true,
|
||||
"title": "Search requests"
|
||||
},
|
||||
{
|
||||
"value_field": "indices.get.total",
|
||||
"derivative": true,
|
||||
"scaleSeconds": true,
|
||||
"title": "Get requests"
|
||||
}
|
||||
]
|
||||
|
|
|
@ -67,9 +67,7 @@
|
|||
"panels": [
|
||||
{
|
||||
"span": 4,
|
||||
"editable": true,
|
||||
"type": "histogram",
|
||||
"loadingEditor": false,
|
||||
"mode": "max",
|
||||
"time_field": "@timestamp",
|
||||
"queries": {
|
||||
|
@ -97,7 +95,7 @@
|
|||
"1y"
|
||||
],
|
||||
"fill": 0,
|
||||
"linewidth": 3,
|
||||
"linewidth": 2,
|
||||
"timezone": "browser",
|
||||
"spyable": true,
|
||||
"zoomlinks": true,
|
||||
|
@ -187,6 +185,7 @@
|
|||
"interactive": true,
|
||||
"options": true,
|
||||
"derivative": true,
|
||||
"scaleSeconds": true,
|
||||
"scale": 1,
|
||||
"tooltip": {
|
||||
"value_type": "cumulative",
|
||||
|
@ -259,6 +258,7 @@
|
|||
"interactive": true,
|
||||
"options": true,
|
||||
"derivative": true,
|
||||
"scaleSeconds": true,
|
||||
"scale": 1,
|
||||
"tooltip": {
|
||||
"value_type": "cumulative",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue