mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
Moved derivative charts to use min, to avoid drops at the end of a chart.
This commit is contained in:
parent
dcf4fe7413
commit
06e35fd439
2 changed files with 21 additions and 29 deletions
|
@ -177,12 +177,14 @@ var rows = [
|
|||
"value_field": "jvm.gc.collectors.ParNew.collection_time_in_millis",
|
||||
"title": "GC Young Gen duration",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true
|
||||
},
|
||||
{
|
||||
"value_field": "jvm.gc.collectors.ParNew.collection_count",
|
||||
"title": "GC counts",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true
|
||||
}
|
||||
]
|
||||
|
@ -194,12 +196,14 @@ var rows = [
|
|||
"value_field": "jvm.gc.collectors.ConcurrentMarkSweep.collection_time_in_millis",
|
||||
"derivative": true,
|
||||
"scaleSeconds": true,
|
||||
"mode": "min",
|
||||
"title": "GC Old Gen duration"
|
||||
},
|
||||
{
|
||||
"value_field": "jvm.gc.collectors.ConcurrentMarkSweep.collection_count",
|
||||
"derivative": true,
|
||||
"scaleSeconds": true,
|
||||
"mode": "min",
|
||||
"title": "GC Old Gen count"
|
||||
}
|
||||
]
|
||||
|
@ -237,17 +241,20 @@ var rows = [
|
|||
"value_field": "fs.data.disk_read_size_in_bytes",
|
||||
"title": "Disk reads (bytes)",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true
|
||||
},
|
||||
{
|
||||
"value_field": "fs.data.disk_write_size_in_bytes",
|
||||
"title": "Disk writes (bytes)",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true
|
||||
},
|
||||
{
|
||||
"value_field": "fs.data.available_in_bytes",
|
||||
"title": "Disk Free space (bytes)"
|
||||
"title": "Disk Free space (bytes)",
|
||||
"mode": "min"
|
||||
}
|
||||
],
|
||||
"notice": false
|
||||
|
@ -263,6 +270,7 @@ var rows = [
|
|||
"value_field": "http.total_opened",
|
||||
"title": "HTTP opened",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true
|
||||
}
|
||||
]
|
||||
|
@ -296,6 +304,7 @@ var rows = [
|
|||
{
|
||||
"value_field": "indices.refresh.total_time_in_millis",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"title": "Avg refresh time"
|
||||
}
|
||||
|
@ -307,6 +316,7 @@ var rows = [
|
|||
{
|
||||
"value_field": "indices.flush.total",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"title": "Flush count"
|
||||
}
|
||||
]
|
||||
|
@ -317,12 +327,14 @@ var rows = [
|
|||
{
|
||||
"value_field": "indices.search.query_total",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"title": "Search requests"
|
||||
},
|
||||
{
|
||||
"value_field": "indices.get.total",
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"title": "Get requests"
|
||||
}
|
||||
|
@ -341,7 +353,7 @@ var rows = [
|
|||
},
|
||||
{
|
||||
"value_field": "process.open_file_descriptors",
|
||||
"title": "File descriptiors"
|
||||
"title": "File descriptors"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -9,8 +9,8 @@
|
|||
],
|
||||
"list": {
|
||||
"0": {
|
||||
"query": "*",
|
||||
"alias": "all cluster",
|
||||
"query": "_type:indices_stats",
|
||||
"alias": "All Indices",
|
||||
"color": "#7EB26D",
|
||||
"id": 0,
|
||||
"pin": true,
|
||||
|
@ -76,7 +76,7 @@
|
|||
0
|
||||
]
|
||||
},
|
||||
"value_field": "indices_stats.primaries.docs.count",
|
||||
"value_field": "primaries.docs.count",
|
||||
"auto_int": true,
|
||||
"resolution": 30,
|
||||
"interval": "1m",
|
||||
|
@ -123,16 +123,6 @@
|
|||
"min": 0
|
||||
},
|
||||
"title": "Document Count",
|
||||
"annotate": {
|
||||
"enable": false,
|
||||
"query": "*",
|
||||
"size": 20,
|
||||
"field": "_type",
|
||||
"sort": [
|
||||
"_score",
|
||||
"desc"
|
||||
]
|
||||
},
|
||||
"pointradius": 5
|
||||
},
|
||||
{
|
||||
|
@ -140,7 +130,6 @@
|
|||
"editable": true,
|
||||
"type": "histogram",
|
||||
"loadingEditor": false,
|
||||
"mode": "max",
|
||||
"time_field": "@timestamp",
|
||||
"queries": {
|
||||
"mode": "selected",
|
||||
|
@ -148,7 +137,7 @@
|
|||
0
|
||||
]
|
||||
},
|
||||
"value_field": "indices_stats.total.search.query_total",
|
||||
"value_field": "total.search.query_total",
|
||||
"auto_int": true,
|
||||
"resolution": 30,
|
||||
"interval": "1m",
|
||||
|
@ -185,6 +174,7 @@
|
|||
"interactive": true,
|
||||
"options": false,
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"scale": 1,
|
||||
"tooltip": {
|
||||
|
@ -196,16 +186,6 @@
|
|||
"min": 0
|
||||
},
|
||||
"title": "Search requests",
|
||||
"annotate": {
|
||||
"enable": false,
|
||||
"query": "*",
|
||||
"size": 20,
|
||||
"field": "_type",
|
||||
"sort": [
|
||||
"_score",
|
||||
"desc"
|
||||
]
|
||||
},
|
||||
"pointradius": 5
|
||||
},
|
||||
{
|
||||
|
@ -213,7 +193,6 @@
|
|||
"editable": true,
|
||||
"type": "histogram",
|
||||
"loadingEditor": false,
|
||||
"mode": "max",
|
||||
"time_field": "@timestamp",
|
||||
"queries": {
|
||||
"mode": "selected",
|
||||
|
@ -221,7 +200,7 @@
|
|||
0
|
||||
]
|
||||
},
|
||||
"value_field": "indices_stats.primaries.indexing.index_total",
|
||||
"value_field": "primaries.indexing.index_total",
|
||||
"auto_int": true,
|
||||
"resolution": 30,
|
||||
"interval": "1m",
|
||||
|
@ -258,6 +237,7 @@
|
|||
"interactive": true,
|
||||
"options": false,
|
||||
"derivative": true,
|
||||
"mode": "min",
|
||||
"scaleSeconds": true,
|
||||
"scale": 1,
|
||||
"tooltip": {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue