From 89efc5fab8786cebd91fce8048c906729b77687b Mon Sep 17 00:00:00 2001 From: ruflin Date: Mon, 3 Sep 2018 13:18:39 +0200 Subject: [PATCH 1/7] Add latency to index and node Elasticsearch stats Closes https://github.com/elastic/kibana/issues/22503 --- .../public/views/elasticsearch/index/advanced/index.html | 2 ++ .../public/views/elasticsearch/node/advanced/index.html | 2 ++ .../api/v1/elasticsearch/metric_set_index_detail.js | 8 ++++++++ .../routes/api/v1/elasticsearch/metric_set_node_detail.js | 8 ++++++++ 4 files changed, 20 insertions(+) diff --git a/x-pack/plugins/monitoring/public/views/elasticsearch/index/advanced/index.html b/x-pack/plugins/monitoring/public/views/elasticsearch/index/advanced/index.html index 67e072bffcf40..9db78992ef901 100644 --- a/x-pack/plugins/monitoring/public/views/elasticsearch/index/advanced/index.html +++ b/x-pack/plugins/monitoring/public/views/elasticsearch/index/advanced/index.html @@ -18,6 +18,8 @@
+
+
diff --git a/x-pack/plugins/monitoring/public/views/elasticsearch/node/advanced/index.html b/x-pack/plugins/monitoring/public/views/elasticsearch/node/advanced/index.html index 1756446aa043f..0c788e77320be 100644 --- a/x-pack/plugins/monitoring/public/views/elasticsearch/node/advanced/index.html +++ b/x-pack/plugins/monitoring/public/views/elasticsearch/node/advanced/index.html @@ -25,6 +25,8 @@
+
+
diff --git a/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/metric_set_index_detail.js b/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/metric_set_index_detail.js index 91879d1176030..87ed5699cc6c1 100644 --- a/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/metric_set_index_detail.js +++ b/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/metric_set_index_detail.js @@ -75,6 +75,14 @@ export const metricSet = { { keys: ['index_segment_count_total', 'index_segment_count_primaries'], name: 'index_segment_count' + }, + { + keys: ['index_latency'], + name: 'index_latency' + }, + { + keys: ['query_latency'], + name: 'query_latency' } ], overview: [ diff --git a/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/metric_set_node_detail.js b/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/metric_set_node_detail.js index bda77a70a4f8c..477df66300e62 100644 --- a/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/metric_set_node_detail.js +++ b/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/metric_set_node_detail.js @@ -88,6 +88,14 @@ export const metricSets = { { keys: ['node_cgroup_periods', 'node_cgroup_throttled_count'], name: 'node_cgroup_stats' + }, + { + keys: ['node_index_latency'], + name: 'node_index_latency' + }, + { + keys: ['node_query_latency'], + name: 'node_query_latency' } ], overview: [ From 55200ca0524a133546c6afdf69ffed74c7e58f27 Mon Sep 17 00:00:00 2001 From: ruflin Date: Tue, 16 Oct 2018 13:06:21 +0200 Subject: [PATCH 2/7] cleanup --- .../public/views/elasticsearch/index/advanced/index.html | 1 - .../public/views/elasticsearch/node/advanced/index.html | 3 +-- .../server/lib/metrics/elasticsearch/metrics.js | 4 ++-- .../api/v1/elasticsearch/metric_set_index_detail.js | 6 +----- .../routes/api/v1/elasticsearch/metric_set_node_detail.js | 8 ++------ 5 files changed, 6 insertions(+), 16 deletions(-) diff --git a/x-pack/plugins/monitoring/public/views/elasticsearch/index/advanced/index.html b/x-pack/plugins/monitoring/public/views/elasticsearch/index/advanced/index.html index 9db78992ef901..72c1b450dd640 100644 --- a/x-pack/plugins/monitoring/public/views/elasticsearch/index/advanced/index.html +++ b/x-pack/plugins/monitoring/public/views/elasticsearch/index/advanced/index.html @@ -19,7 +19,6 @@
-
diff --git a/x-pack/plugins/monitoring/public/views/elasticsearch/node/advanced/index.html b/x-pack/plugins/monitoring/public/views/elasticsearch/node/advanced/index.html index 0c788e77320be..4256c5bb5377b 100644 --- a/x-pack/plugins/monitoring/public/views/elasticsearch/node/advanced/index.html +++ b/x-pack/plugins/monitoring/public/views/elasticsearch/node/advanced/index.html @@ -25,8 +25,7 @@
-
-
+
diff --git a/x-pack/plugins/monitoring/server/lib/metrics/elasticsearch/metrics.js b/x-pack/plugins/monitoring/server/lib/metrics/elasticsearch/metrics.js index 1a7639f3e097b..559e621451edc 100644 --- a/x-pack/plugins/monitoring/server/lib/metrics/elasticsearch/metrics.js +++ b/x-pack/plugins/monitoring/server/lib/metrics/elasticsearch/metrics.js @@ -70,7 +70,7 @@ export const metrics = { 'Average latency for indexing documents, which is time it takes to index documents divided by number that were indexed. This considers any shard located on this node, including replicas.', // eslint-disable-line max-len type: 'node' }), - index_latency: new LatencyMetric({ + index_index_latency: new LatencyMetric({ metric: 'index', fieldSource: 'index_stats.primaries', field: 'index_stats.primaries.indexing.index_total', @@ -98,7 +98,7 @@ export const metrics = { 'Average latency for searching, which is time it takes to execute searches divided by number of searches submitted. This considers primary and replica shards.', // eslint-disable-line max-len type: 'node' }), - query_latency: new LatencyMetric({ + index_query_latency: new LatencyMetric({ metric: 'query', fieldSource: 'index_stats.total', field: 'index_stats.total.search.query_total', diff --git a/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/metric_set_index_detail.js b/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/metric_set_index_detail.js index 87ed5699cc6c1..c39527173e908 100644 --- a/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/metric_set_index_detail.js +++ b/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/metric_set_index_detail.js @@ -77,12 +77,8 @@ export const metricSet = { name: 'index_segment_count' }, { - keys: ['index_latency'], + keys: ['index_index_latency', 'index_query_latency'], name: 'index_latency' - }, - { - keys: ['query_latency'], - name: 'query_latency' } ], overview: [ diff --git a/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/metric_set_node_detail.js b/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/metric_set_node_detail.js index 477df66300e62..b6322bb67f047 100644 --- a/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/metric_set_node_detail.js +++ b/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/metric_set_node_detail.js @@ -90,12 +90,8 @@ export const metricSets = { name: 'node_cgroup_stats' }, { - keys: ['node_index_latency'], - name: 'node_index_latency' - }, - { - keys: ['node_query_latency'], - name: 'node_query_latency' + keys: ['node_query_latency', 'node_index_latency'], + name: 'node_latency' } ], overview: [ From 58165f41c912706ab469a0047001e27533422ee3 Mon Sep 17 00:00:00 2001 From: ruflin Date: Fri, 19 Oct 2018 08:46:34 +0200 Subject: [PATCH 3/7] fix title --- .../monitoring/server/lib/metrics/elasticsearch/metrics.js | 1 + 1 file changed, 1 insertion(+) diff --git a/x-pack/plugins/monitoring/server/lib/metrics/elasticsearch/metrics.js b/x-pack/plugins/monitoring/server/lib/metrics/elasticsearch/metrics.js index 559e621451edc..9ff410eeab77e 100644 --- a/x-pack/plugins/monitoring/server/lib/metrics/elasticsearch/metrics.js +++ b/x-pack/plugins/monitoring/server/lib/metrics/elasticsearch/metrics.js @@ -74,6 +74,7 @@ export const metrics = { metric: 'index', fieldSource: 'index_stats.primaries', field: 'index_stats.primaries.indexing.index_total', + title: 'Latency', label: 'Indexing Latency', description: 'Average latency for indexing documents, which is time it takes to index documents divided by number that were indexed. This only considers primary shards.', // eslint-disable-line max-len From 25091e54eb273d7be4a82a318ade6be20921e043 Mon Sep 17 00:00:00 2001 From: ruflin Date: Fri, 19 Oct 2018 11:23:35 +0200 Subject: [PATCH 4/7] update snapshots --- .../__snapshots__/metrics.test.js.snap | 161 +++++++++--------- 1 file changed, 81 insertions(+), 80 deletions(-) diff --git a/x-pack/plugins/monitoring/server/lib/metrics/__test__/__snapshots__/metrics.test.js.snap b/x-pack/plugins/monitoring/server/lib/metrics/__test__/__snapshots__/metrics.test.js.snap index a3590788367c3..4fcad80001624 100644 --- a/x-pack/plugins/monitoring/server/lib/metrics/__test__/__snapshots__/metrics.test.js.snap +++ b/x-pack/plugins/monitoring/server/lib/metrics/__test__/__snapshots__/metrics.test.js.snap @@ -1954,6 +1954,47 @@ Object { "units": "", "uuidField": "source_node.uuid", }, + "index_index_latency": LatencyMetric { + "aggs": Object { + "event_time_in_millis": Object { + "max": Object { + "field": "index_stats.primaries.indexing.index_time_in_millis", + }, + }, + "event_time_in_millis_deriv": Object { + "derivative": Object { + "buckets_path": "event_time_in_millis", + "gap_policy": "skip", + "unit": "1s", + }, + }, + "event_total": Object { + "max": Object { + "field": "index_stats.primaries.indexing.index_total", + }, + }, + "event_total_deriv": Object { + "derivative": Object { + "buckets_path": "event_total", + "gap_policy": "skip", + "unit": "1s", + }, + }, + }, + "app": "elasticsearch", + "calculation": [Function], + "derivative": false, + "description": "Average latency for indexing documents, which is time it takes to index documents divided by number that were indexed. This only considers primary shards.", + "field": "index_stats.primaries.indexing.index_total", + "format": "0,0.[00]", + "label": "Indexing Latency", + "metricAgg": "sum", + "timestampField": "timestamp", + "title": "Latency", + "type": "cluster", + "units": "ms", + "uuidField": "source_node.uuid", + }, "index_indexing_primaries_time": ElasticsearchMetric { "app": "elasticsearch", "derivative": true, @@ -1996,46 +2037,6 @@ Object { "units": "ms", "uuidField": "source_node.uuid", }, - "index_latency": LatencyMetric { - "aggs": Object { - "event_time_in_millis": Object { - "max": Object { - "field": "index_stats.primaries.indexing.index_time_in_millis", - }, - }, - "event_time_in_millis_deriv": Object { - "derivative": Object { - "buckets_path": "event_time_in_millis", - "gap_policy": "skip", - "unit": "1s", - }, - }, - "event_total": Object { - "max": Object { - "field": "index_stats.primaries.indexing.index_total", - }, - }, - "event_total_deriv": Object { - "derivative": Object { - "buckets_path": "event_total", - "gap_policy": "skip", - "unit": "1s", - }, - }, - }, - "app": "elasticsearch", - "calculation": [Function], - "derivative": false, - "description": "Average latency for indexing documents, which is time it takes to index documents divided by number that were indexed. This only considers primary shards.", - "field": "index_stats.primaries.indexing.index_total", - "format": "0,0.[00]", - "label": "Indexing Latency", - "metricAgg": "sum", - "timestampField": "timestamp", - "type": "cluster", - "units": "ms", - "uuidField": "source_node.uuid", - }, "index_mem_doc_values": SingleIndexMemoryMetric { "app": "elasticsearch", "derivative": false, @@ -2273,6 +2274,46 @@ Object { "units": "/s", "uuidField": "source_node.uuid", }, + "index_query_latency": LatencyMetric { + "aggs": Object { + "event_time_in_millis": Object { + "max": Object { + "field": "index_stats.total.search.query_time_in_millis", + }, + }, + "event_time_in_millis_deriv": Object { + "derivative": Object { + "buckets_path": "event_time_in_millis", + "gap_policy": "skip", + "unit": "1s", + }, + }, + "event_total": Object { + "max": Object { + "field": "index_stats.total.search.query_total", + }, + }, + "event_total_deriv": Object { + "derivative": Object { + "buckets_path": "event_total", + "gap_policy": "skip", + "unit": "1s", + }, + }, + }, + "app": "elasticsearch", + "calculation": [Function], + "derivative": false, + "description": "Average latency for searching, which is time it takes to execute searches divided by number of searches submitted. This considers primary and replica shards.", + "field": "index_stats.total.search.query_total", + "format": "0,0.[00]", + "label": "Search Latency", + "metricAgg": "sum", + "timestampField": "timestamp", + "type": "cluster", + "units": "ms", + "uuidField": "source_node.uuid", + }, "index_refresh_time": ElasticsearchMetric { "app": "elasticsearch", "derivative": true, @@ -4504,46 +4545,6 @@ Object { "units": "ms", "uuidField": "source_node.uuid", }, - "query_latency": LatencyMetric { - "aggs": Object { - "event_time_in_millis": Object { - "max": Object { - "field": "index_stats.total.search.query_time_in_millis", - }, - }, - "event_time_in_millis_deriv": Object { - "derivative": Object { - "buckets_path": "event_time_in_millis", - "gap_policy": "skip", - "unit": "1s", - }, - }, - "event_total": Object { - "max": Object { - "field": "index_stats.total.search.query_total", - }, - }, - "event_total_deriv": Object { - "derivative": Object { - "buckets_path": "event_total", - "gap_policy": "skip", - "unit": "1s", - }, - }, - }, - "app": "elasticsearch", - "calculation": [Function], - "derivative": false, - "description": "Average latency for searching, which is time it takes to execute searches divided by number of searches submitted. This considers primary and replica shards.", - "field": "index_stats.total.search.query_total", - "format": "0,0.[00]", - "label": "Search Latency", - "metricAgg": "sum", - "timestampField": "timestamp", - "type": "cluster", - "units": "ms", - "uuidField": "source_node.uuid", - }, "search_request_rate": RequestRateMetric { "app": "elasticsearch", "derivative": true, From 11dbd73e2dc83d6738627e6b592c59f5ae436abe Mon Sep 17 00:00:00 2001 From: ruflin Date: Tue, 23 Oct 2018 08:30:11 +0200 Subject: [PATCH 5/7] update fixture --- .../fixtures/node_detail_advanced.json | 1594 +++++++++-------- 1 file changed, 895 insertions(+), 699 deletions(-) diff --git a/x-pack/test/api_integration/apis/monitoring/elasticsearch/fixtures/node_detail_advanced.json b/x-pack/test/api_integration/apis/monitoring/elasticsearch/fixtures/node_detail_advanced.json index 14c2faf20f17f..b3c20c7e21e67 100644 --- a/x-pack/test/api_integration/apis/monitoring/elasticsearch/fixtures/node_detail_advanced.json +++ b/x-pack/test/api_integration/apis/monitoring/elasticsearch/fixtures/node_detail_advanced.json @@ -1,48 +1,48 @@ { - "nodeSummary": { - "resolver": "jUT5KdxfRbORSCWkb5zjmA", - "node_ids": [ + nodeSummary: { + resolver: "jUT5KdxfRbORSCWkb5zjmA", + node_ids: [ "jUT5KdxfRbORSCWkb5zjmA" ], - "attributes": { - "ml.max_open_jobs": "10", - "ml.enabled": "true" + attributes: { + ml.max_open_jobs: "10", + ml.enabled: "true" }, - "transport_address": "127.0.0.1:9300", - "name": "whatever-01", - "type": "master", - "nodeTypeLabel": "Master Node", - "nodeTypeClass": "fa-star", - "totalShards": 38, - "indexCount": 20, - "documents": 24830, - "dataSize": 52847579, - "freeSpace": 186755088384, - "usedHeap": 29, - "status": "Online", - "isOnline": true + transport_address: "127.0.0.1:9300", + name: "whatever-01", + type: "master", + nodeTypeLabel: "Master Node", + nodeTypeClass: "fa-star", + totalShards: 38, + indexCount: 20, + documents: 24830, + dataSize: 52847579, + freeSpace: 186755088384, + usedHeap: 29, + status: "Online", + isOnline: true }, - "metrics": { - "node_jvm_mem": [ + metrics: { + node_jvm_mem: [ { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.jvm.mem.heap_max_in_bytes", - "metricAgg": "max", - "label": "Max Heap", - "title": "JVM Heap", - "description": "Total heap available to Elasticsearch running in the JVM.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.jvm.mem.heap_max_in_bytes", + metricAgg: "max", + label: "Max Heap", + title: "JVM Heap", + description: "Total heap available to Elasticsearch running in the JVM.", + units: "B", + format: "0.0 b", + hasCalculation: false, + isDerivative: false + }, + data: [ [ 1507235520000, 709623808 @@ -122,24 +122,24 @@ ] }, { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.jvm.mem.heap_used_in_bytes", - "metricAgg": "max", - "label": "Used Heap", - "title": "JVM Heap", - "description": "Total heap used by Elasticsearch running in the JVM.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.jvm.mem.heap_used_in_bytes", + metricAgg: "max", + label: "Used Heap", + title: "JVM Heap", + description: "Total heap used by Elasticsearch running in the JVM.", + units: "B", + format: "0.0 b", + hasCalculation: false, + isDerivative: false + }, + data: [ [ 1507235520000, 317052776 @@ -219,26 +219,26 @@ ] } ], - "node_gc": [ + node_gc: [ { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.jvm.gc.collectors.old.collection_count", - "metricAgg": "max", - "label": "Old", - "title": "GC Count", - "description": "Number of old Garbage Collections.", - "units": "", - "format": "0.[00]", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.jvm.gc.collectors.old.collection_count", + metricAgg: "max", + label: "Old", + title: "GC Count", + description: "Number of old Garbage Collections.", + units: "", + format: "0.[00]", + hasCalculation: false, + isDerivative: true + }, + data: [ [ 1507235520000, null @@ -318,24 +318,24 @@ ] }, { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.jvm.gc.collectors.young.collection_count", - "metricAgg": "max", - "label": "Young", - "title": "GC Count", - "description": "Number of young Garbage Collections.", - "units": "", - "format": "0.[00]", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.jvm.gc.collectors.young.collection_count", + metricAgg: "max", + label: "Young", + title: "GC Count", + description: "Number of young Garbage Collections.", + units: "", + format: "0.[00]", + hasCalculation: false, + isDerivative: true + }, + data: [ [ 1507235520000, null @@ -415,26 +415,26 @@ ] } ], - "node_gc_time": [ + node_gc_time: [ { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.jvm.gc.collectors.old.collection_time_in_millis", - "metricAgg": "max", - "label": "Old", - "title": "GC Duration", - "description": "Time spent performing old Garbage Collections.", - "units": "ms", - "format": "0,0.[00]", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.jvm.gc.collectors.old.collection_time_in_millis", + metricAgg: "max", + label: "Old", + title: "GC Duration", + description: "Time spent performing old Garbage Collections.", + units: "ms", + format: "0,0.[00]", + hasCalculation: false, + isDerivative: true + }, + data: [ [ 1507235520000, null @@ -514,24 +514,24 @@ ] }, { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.jvm.gc.collectors.young.collection_time_in_millis", - "metricAgg": "max", - "label": "Young", - "title": "GC Duration", - "description": "Time spent performing young Garbage Collections.", - "units": "ms", - "format": "0,0.[00]", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.jvm.gc.collectors.young.collection_time_in_millis", + metricAgg: "max", + label: "Young", + title: "GC Duration", + description: "Time spent performing young Garbage Collections.", + units: "ms", + format: "0,0.[00]", + hasCalculation: false, + isDerivative: true + }, + data: [ [ 1507235520000, null @@ -611,26 +611,26 @@ ] } ], - "node_index_1": [ + node_index_1: [ { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.indices.segments.memory_in_bytes", - "metricAgg": "max", - "label": "Lucene Total", - "title": "Index Memory - Lucene 1", - "description": "Total heap memory used by Lucene for current index. This is the sum of other fields for primary and replica shards on this node.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.indices.segments.memory_in_bytes", + metricAgg: "max", + label: "Lucene Total", + title: "Index Memory - Lucene 1", + description: "Total heap memory used by Lucene for current index. This is the sum of other fields for primary and replica shards on this node.", + units: "B", + format: "0.0 b", + hasCalculation: false, + isDerivative: false + }, + data: [ [ 1507235520000, 4797457 @@ -710,24 +710,24 @@ ] }, { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.indices.segments.stored_fields_memory_in_bytes", - "metricAgg": "max", - "label": "Stored Fields", - "title": "Index Memory", - "description": "Heap memory used by Stored Fields (e.g., _source). This is a part of Lucene Total.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.indices.segments.stored_fields_memory_in_bytes", + metricAgg: "max", + label: "Stored Fields", + title: "Index Memory", + description: "Heap memory used by Stored Fields (e.g., _source). This is a part of Lucene Total.", + units: "B", + format: "0.0 b", + hasCalculation: false, + isDerivative: false + }, + data: [ [ 1507235520000, 56792 @@ -807,24 +807,24 @@ ] }, { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.indices.segments.doc_values_memory_in_bytes", - "metricAgg": "max", - "label": "Doc Values", - "title": "Index Memory", - "description": "Heap memory used by Doc Values. This is a part of Lucene Total.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.indices.segments.doc_values_memory_in_bytes", + metricAgg: "max", + label: "Doc Values", + title: "Index Memory", + description: "Heap memory used by Doc Values. This is a part of Lucene Total.", + units: "B", + format: "0.0 b", + hasCalculation: false, + isDerivative: false + }, + data: [ [ 1507235520000, 516824 @@ -904,24 +904,24 @@ ] }, { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.indices.segments.norms_memory_in_bytes", - "metricAgg": "max", - "label": "Norms", - "title": "Index Memory", - "description": "Heap memory used by Norms (normalization factors for query-time, text scoring). This is a part of Lucene Total.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.indices.segments.norms_memory_in_bytes", + metricAgg: "max", + label: "Norms", + title: "Index Memory", + description: "Heap memory used by Norms (normalization factors for query-time, text scoring). This is a part of Lucene Total.", + units: "B", + format: "0.0 b", + hasCalculation: false, + isDerivative: false + }, + data: [ [ 1507235520000, 447232 @@ -1001,26 +1001,26 @@ ] } ], - "node_index_2": [ + node_index_2: [ { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.indices.segments.memory_in_bytes", - "metricAgg": "max", - "label": "Lucene Total", - "title": "Index Memory - Lucene 2", - "description": "Total heap memory used by Lucene for current index. This is the sum of other fields for primary and replica shards on this node.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.indices.segments.memory_in_bytes", + metricAgg: "max", + label: "Lucene Total", + title: "Index Memory - Lucene 2", + description: "Total heap memory used by Lucene for current index. This is the sum of other fields for primary and replica shards on this node.", + units: "B", + format: "0.0 b", + hasCalculation: false, + isDerivative: false + }, + data: [ [ 1507235520000, 4797457 @@ -1100,24 +1100,24 @@ ] }, { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.indices.segments.terms_memory_in_bytes", - "metricAgg": "max", - "label": "Terms", - "title": "Index Memory", - "description": "Heap memory used by Terms (e.g., text). This is a part of Lucene Total.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.indices.segments.terms_memory_in_bytes", + metricAgg: "max", + label: "Terms", + title: "Index Memory", + description: "Heap memory used by Terms (e.g., text). This is a part of Lucene Total.", + units: "B", + format: "0.0 b", + hasCalculation: false, + isDerivative: false + }, + data: [ [ 1507235520000, 3764438 @@ -1197,24 +1197,24 @@ ] }, { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.indices.segments.points_memory_in_bytes", - "metricAgg": "max", - "label": "Points", - "title": "Index Memory", - "description": "Heap memory used by Points (e.g., numbers, IPs, and geo data). This is a part of Lucene Total.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.indices.segments.points_memory_in_bytes", + metricAgg: "max", + label: "Points", + title: "Index Memory", + description: "Heap memory used by Points (e.g., numbers, IPs, and geo data). This is a part of Lucene Total.", + units: "B", + format: "0.0 b", + hasCalculation: false, + isDerivative: false + }, + data: [ [ 1507235520000, 12171 @@ -1294,26 +1294,26 @@ ] } ], - "node_index_3": [ + node_index_3: [ { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.indices.segments.memory_in_bytes", - "metricAgg": "max", - "label": "Lucene Total", - "title": "Index Memory - Lucene 3", - "description": "Total heap memory used by Lucene for current index. This is the sum of other fields for primary and replica shards on this node.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.indices.segments.memory_in_bytes", + metricAgg: "max", + label: "Lucene Total", + title: "Index Memory - Lucene 3", + description: "Total heap memory used by Lucene for current index. This is the sum of other fields for primary and replica shards on this node.", + units: "B", + format: "0.0 b", + hasCalculation: false, + isDerivative: false + }, + data: [ [ 1507235520000, 4797457 @@ -1393,24 +1393,24 @@ ] }, { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.indices.segments.fixed_bit_set_memory_in_bytes", - "metricAgg": "max", - "label": "Fixed Bitsets", - "title": "Index Memory", - "description": "Heap memory used by Fixed Bit Sets (e.g., deeply nested documents). This is a part of Lucene Total.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.indices.segments.fixed_bit_set_memory_in_bytes", + metricAgg: "max", + label: "Fixed Bitsets", + title: "Index Memory", + description: "Heap memory used by Fixed Bit Sets (e.g., deeply nested documents). This is a part of Lucene Total.", + units: "B", + format: "0.0 b", + hasCalculation: false, + isDerivative: false + }, + data: [ [ 1507235520000, 4024 @@ -1490,24 +1490,24 @@ ] }, { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.indices.segments.term_vectors_memory_in_bytes", - "metricAgg": "max", - "label": "Term Vectors", - "title": "Index Memory", - "description": "Heap memory used by Term Vectors. This is a part of Lucene Total.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.indices.segments.term_vectors_memory_in_bytes", + metricAgg: "max", + label: "Term Vectors", + title: "Index Memory", + description: "Heap memory used by Term Vectors. This is a part of Lucene Total.", + units: "B", + format: "0.0 b", + hasCalculation: false, + isDerivative: false + }, + data: [ [ 1507235520000, 0 @@ -1587,24 +1587,24 @@ ] }, { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.indices.segments.version_map_memory_in_bytes", - "metricAgg": "max", - "label": "Version Map", - "title": "Index Memory", - "description": "Heap memory used by Versioning (e.g., updates and deletes). This is NOT a part of Lucene Total.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.indices.segments.version_map_memory_in_bytes", + metricAgg: "max", + label: "Version Map", + title: "Index Memory", + description: "Heap memory used by Versioning (e.g., updates and deletes). This is NOT a part of Lucene Total.", + units: "B", + format: "0.0 b", + hasCalculation: false, + isDerivative: false + }, + data: [ [ 1507235520000, 5551 @@ -1684,26 +1684,26 @@ ] } ], - "node_index_4": [ + node_index_4: [ { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.indices.query_cache.memory_size_in_bytes", - "metricAgg": "max", - "label": "Query Cache", - "title": "Index Memory - Elasticsearch", - "description": "Heap memory used by Query Cache (e.g., cached filters). This is for the same shards, but not a part of Lucene Total.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.indices.query_cache.memory_size_in_bytes", + metricAgg: "max", + label: "Query Cache", + title: "Index Memory - Elasticsearch", + description: "Heap memory used by Query Cache (e.g., cached filters). This is for the same shards, but not a part of Lucene Total.", + units: "B", + format: "0.0 b", + hasCalculation: false, + isDerivative: false + }, + data: [ [ 1507235520000, 0 @@ -1783,24 +1783,24 @@ ] }, { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.indices.request_cache.memory_size_in_bytes", - "metricAgg": "max", - "label": "Request Cache", - "title": "Index Memory", - "description": "Heap memory used by Request Cache (e.g., instant aggregations). This is for the same shards, but not a part of Lucene Total.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.indices.request_cache.memory_size_in_bytes", + metricAgg: "max", + label: "Request Cache", + title: "Index Memory", + description: "Heap memory used by Request Cache (e.g., instant aggregations). This is for the same shards, but not a part of Lucene Total.", + units: "B", + format: "0.0 b", + hasCalculation: false, + isDerivative: false + }, + data: [ [ 1507235520000, 2921 @@ -1880,24 +1880,24 @@ ] }, { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.indices.fielddata.memory_size_in_bytes", - "metricAgg": "max", - "label": "Fielddata", - "title": "Index Memory", - "description": "Heap memory used by Fielddata (e.g., global ordinals or explicitly enabled fielddata on text fields). This is for the same shards, but not a part of Lucene Total.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.indices.fielddata.memory_size_in_bytes", + metricAgg: "max", + label: "Fielddata", + title: "Index Memory", + description: "Heap memory used by Fielddata (e.g., global ordinals or explicitly enabled fielddata on text fields). This is for the same shards, but not a part of Lucene Total.", + units: "B", + format: "0.0 b", + hasCalculation: false, + isDerivative: false + }, + data: [ [ 1507235520000, 0 @@ -1977,24 +1977,24 @@ ] }, { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.indices.segments.index_writer_memory_in_bytes", - "metricAgg": "max", - "label": "Index Writer", - "title": "Index Memory", - "description": "Heap memory used by the Index Writer. This is NOT a part of Lucene Total.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.indices.segments.index_writer_memory_in_bytes", + metricAgg: "max", + label: "Index Writer", + title: "Index Memory", + description: "Heap memory used by the Index Writer. This is NOT a part of Lucene Total.", + units: "B", + format: "0.0 b", + hasCalculation: false, + isDerivative: false + }, + data: [ [ 1507235520000, 153549 @@ -2074,26 +2074,26 @@ ] } ], - "node_request_total": [ + node_request_total: [ { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.indices.search.query_total", - "metricAgg": "max", - "label": "Search Total", - "title": "Request Rate", - "description": "Amount of search operations (per shard).", - "units": "", - "format": "0,0.[00]", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.indices.search.query_total", + metricAgg: "max", + label: "Search Total", + title: "Request Rate", + description: "Amount of search operations (per shard).", + units: "", + format: "0,0.[00]", + hasCalculation: false, + isDerivative: true + }, + data: [ [ 1507235520000, null @@ -2173,24 +2173,24 @@ ] }, { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.indices.indexing.index_total", - "metricAgg": "max", - "label": "Indexing Total", - "title": "Request Rate", - "description": "Amount of indexing operations.", - "units": "", - "format": "0,0.[00]", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.indices.indexing.index_total", + metricAgg: "max", + label: "Indexing Total", + title: "Request Rate", + description: "Amount of indexing operations.", + units: "", + format: "0,0.[00]", + hasCalculation: false, + isDerivative: true + }, + data: [ [ 1507235520000, null @@ -2270,26 +2270,26 @@ ] } ], - "node_index_time": [ + node_index_time: [ { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.indices.indexing.index_time_in_millis", - "metricAgg": "max", - "label": "Index Time", - "title": "Indexing Time", - "description": "Amount of time spent on indexing operations.", - "units": "ms", - "format": "0,0.[00]", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.indices.indexing.index_time_in_millis", + metricAgg: "max", + label: "Index Time", + title: "Indexing Time", + description: "Amount of time spent on indexing operations.", + units: "ms", + format: "0,0.[00]", + hasCalculation: false, + isDerivative: true + }, + data: [ [ 1507235520000, null @@ -2369,24 +2369,24 @@ ] }, { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.indices.indexing.throttle_time_in_millis", - "metricAgg": "max", - "label": "Index Throttling Time", - "title": "Indexing Time", - "description": "Amount of time spent with index throttling, which indicates slow disks on a node.", - "units": "ms", - "format": "0,0.[00]", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.indices.indexing.throttle_time_in_millis", + metricAgg: "max", + label: "Index Throttling Time", + title: "Indexing Time", + description: "Amount of time spent with index throttling, which indicates slow disks on a node.", + units: "ms", + format: "0,0.[00]", + hasCalculation: false, + isDerivative: true + }, + data: [ [ 1507235520000, null @@ -2466,26 +2466,26 @@ ] } ], - "node_index_threads": [ + node_index_threads: [ { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.thread_pool.write.queue", - "metricAgg": "max", - "label": "Write Queue", - "title": "Indexing Threads", - "description": "Number of index, bulk, and write operations in the queue. The bulk threadpool was renamed to write in 6.3, and the index threadpool is deprecated.", - "units": "", - "format": "0.[00]", - "hasCalculation": true, - "isDerivative": false - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.thread_pool.write.queue", + metricAgg: "max", + label: "Write Queue", + title: "Indexing Threads", + description: "Number of index, bulk, and write operations in the queue. The bulk threadpool was renamed to write in 6.3, and the index threadpool is deprecated.", + units: "", + format: "0.[00]", + hasCalculation: true, + isDerivative: false + }, + data: [ [ 1507235520000, 0 @@ -2565,24 +2565,24 @@ ] }, { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.thread_pool.write.rejected", - "metricAgg": "max", - "label": "Write Rejections", - "title": "Indexing Threads", - "description": "Number of index, bulk, and write operations that have been rejected, which occurs when the queue is full. The bulk threadpool was renamed to write in 6.3, and the index threadpool is deprecated.", - "units": "", - "format": "0.[00]", - "hasCalculation": true, - "isDerivative": false - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.thread_pool.write.rejected", + metricAgg: "max", + label: "Write Rejections", + title: "Indexing Threads", + description: "Number of index, bulk, and write operations that have been rejected, which occurs when the queue is full. The bulk threadpool was renamed to write in 6.3, and the index threadpool is deprecated.", + units: "", + format: "0.[00]", + hasCalculation: true, + isDerivative: false + }, + data: [ [ 1507235520000, null @@ -2662,26 +2662,26 @@ ] } ], - "node_read_threads": [ + node_read_threads: [ { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.thread_pool.search.queue", - "metricAgg": "max", - "label": "Search Queue", - "title": "Read Threads", - "description": "Number of search operations in the queue (e.g., shard level searches).", - "units": "", - "format": "0,0.[00]", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.thread_pool.search.queue", + metricAgg: "max", + label: "Search Queue", + title: "Read Threads", + description: "Number of search operations in the queue (e.g., shard level searches).", + units: "", + format: "0,0.[00]", + hasCalculation: false, + isDerivative: true + }, + data: [ [ 1507235520000, null @@ -2761,24 +2761,24 @@ ] }, { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.thread_pool.search.rejected", - "metricAgg": "max", - "label": "Search Rejections", - "title": "Read Threads", - "description": "Number of search operations that have been rejected, which occurs when the queue is full.", - "units": "", - "format": "0,0.[00]", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.thread_pool.search.rejected", + metricAgg: "max", + label: "Search Rejections", + title: "Read Threads", + description: "Number of search operations that have been rejected, which occurs when the queue is full.", + units: "", + format: "0,0.[00]", + hasCalculation: false, + isDerivative: true + }, + data: [ [ 1507235520000, null @@ -2858,24 +2858,24 @@ ] }, { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.thread_pool.get.queue", - "metricAgg": "max", - "label": "GET Queue", - "title": "Read Threads", - "description": "Number of GET operations in the queue.", - "units": "", - "format": "0,0.[00]", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.thread_pool.get.queue", + metricAgg: "max", + label: "GET Queue", + title: "Read Threads", + description: "Number of GET operations in the queue.", + units: "", + format: "0,0.[00]", + hasCalculation: false, + isDerivative: true + }, + data: [ [ 1507235520000, null @@ -2955,24 +2955,24 @@ ] }, { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.thread_pool.get.rejected", - "metricAgg": "max", - "label": "GET Rejections", - "title": "Read Threads", - "description": "Number of GET operations that have been rejected, which occurs when the queue is full.", - "units": "", - "format": "0,0.[00]", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.thread_pool.get.rejected", + metricAgg: "max", + label: "GET Rejections", + title: "Read Threads", + description: "Number of GET operations that have been rejected, which occurs when the queue is full.", + units: "", + format: "0,0.[00]", + hasCalculation: false, + isDerivative: true + }, + data: [ [ 1507235520000, null @@ -3052,25 +3052,25 @@ ] } ], - "node_cpu_utilization": [ + node_cpu_utilization: [ { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.process.cpu.percent", - "metricAgg": "max", - "label": "CPU Utilization", - "description": "Percentage of CPU usage for the Elasticsearch process.", - "units": "%", - "format": "0,0.[00]", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.process.cpu.percent", + metricAgg: "max", + label: "CPU Utilization", + description: "Percentage of CPU usage for the Elasticsearch process.", + units: "%", + format: "0,0.[00]", + hasCalculation: false, + isDerivative: false + }, + data: [ [ 1507235520000, 1 @@ -3150,24 +3150,24 @@ ] }, { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.process.cpu.percent", - "metricAgg": "max", - "label": "Cgroup CPU Utilization", - "title": "CPU Utilization", - "description": "CPU Usage time compared to the CPU quota shown in percentage. If CPU quotas are not set, then no data will be shown.", - "units": "%", - "format": "0,0.[00]", - "hasCalculation": true, - "isDerivative": true - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.process.cpu.percent", + metricAgg: "max", + label: "Cgroup CPU Utilization", + title: "CPU Utilization", + description: "CPU Usage time compared to the CPU quota shown in percentage. If CPU quotas are not set, then no data will be shown.", + units: "%", + format: "0,0.[00]", + hasCalculation: true, + isDerivative: true + }, + data: [ [ 1507235520000, null @@ -3247,26 +3247,26 @@ ] } ], - "node_cgroup_cpu": [ + node_cgroup_cpu: [ { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.os.cgroup.cpuacct.usage_nanos", - "metricAgg": "max", - "label": "Cgroup Usage", - "title": "Cgroup CPU Performance", - "description": "The usage, reported in nanoseconds, of the Cgroup. Compare this with the throttling to discover issues.", - "units": "ns", - "format": "0,0.[0]a", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.os.cgroup.cpuacct.usage_nanos", + metricAgg: "max", + label: "Cgroup Usage", + title: "Cgroup CPU Performance", + description: "The usage, reported in nanoseconds, of the Cgroup. Compare this with the throttling to discover issues.", + units: "ns", + format: "0,0.[0]a", + hasCalculation: false, + isDerivative: true + }, + data: [ [ 1507235520000, null @@ -3346,24 +3346,24 @@ ] }, { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.os.cgroup.cpu.stat.time_throttled_nanos", - "metricAgg": "max", - "label": "Cgroup Throttling", - "title": "Cgroup CPU Performance", - "description": "The amount of throttled time, reported in nanoseconds, of the Cgroup.", - "units": "ns", - "format": "0,0.[0]a", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.os.cgroup.cpu.stat.time_throttled_nanos", + metricAgg: "max", + label: "Cgroup Throttling", + title: "Cgroup CPU Performance", + description: "The amount of throttled time, reported in nanoseconds, of the Cgroup.", + units: "ns", + format: "0,0.[0]a", + hasCalculation: false, + isDerivative: true + }, + data: [ [ 1507235520000, null @@ -3443,26 +3443,26 @@ ] } ], - "node_cgroup_stats": [ + node_cgroup_stats: [ { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.os.cgroup.cpu.stat.number_of_elapsed_periods", - "metricAgg": "max", - "label": "Cgroup Elapsed Periods", - "title": "Cgroup CFS Stats", - "description": "The number of sampling periods from the Completely Fair Scheduler (CFS). Compare against the number of times throttled.", - "units": "", - "format": "0,0.[00]", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + metricAgg: "max", + label: "Cgroup Elapsed Periods", + title: "Cgroup CFS Stats", + description: "The number of sampling periods from the Completely Fair Scheduler (CFS). Compare against the number of times throttled.", + units: "", + format: "0,0.[00]", + hasCalculation: false, + isDerivative: true + }, + data: [ [ 1507235520000, null @@ -3542,24 +3542,24 @@ ] }, { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "node_stats.os.cgroup.cpu.stat.number_of_times_throttled", - "metricAgg": "max", - "label": "Cgroup Throttled Count", - "title": "Cgroup CFS Stats", - "description": "The number of times that the CPU was throttled by the Cgroup.", - "units": "", - "format": "0,0.[00]", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.os.cgroup.cpu.stat.number_of_times_throttled", + metricAgg: "max", + label: "Cgroup Throttled Count", + title: "Cgroup CFS Stats", + description: "The number of times that the CPU was throttled by the Cgroup.", + units: "", + format: "0,0.[00]", + hasCalculation: false, + isDerivative: true + }, + data: [ [ 1507235520000, null @@ -3638,6 +3638,202 @@ ] ] } + ], + node_latency: [ + { + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.indices.search.query_total", + metricAgg: "sum", + label: "Search", + title: "Latency", + description: "Average latency for searching, which is time it takes to execute searches divided by number of searches submitted. This considers primary and replica shards.", + units: "ms", + format: "0,0.[00]", + hasCalculation: true, + isDerivative: false + }, + data: [ + [ + 1507235520000, + null + ], + [ + 1507235530000, + 0.33333333333333337 + ], + [ + 1507235540000, + 0 + ], + [ + 1507235550000, + 0.33333333333333337 + ], + [ + 1507235560000, + 0 + ], + [ + 1507235570000, + 0.33333333333333337 + ], + [ + 1507235580000, + 0 + ], + [ + 1507235590000, + 0 + ], + [ + 1507235600000, + 0.33333333333333337 + ], + [ + 1507235610000, + 0 + ], + [ + 1507235620000, + 0 + ], + [ + 1507235630000, + 0.33333333333333337 + ], + [ + 1507235640000, + 0 + ], + [ + 1507235650000, + 0 + ], + [ + 1507235660000, + 0 + ], + [ + 1507235670000, + 0.2 + ], + [ + 1507235680000, + 0 + ], + [ + 1507235690000, + 0 + ], + [ + 1507235700000, + 0 + ] + ] + }, + { + bucket_size: "10 seconds", + timeRange: { + min: 1507235508000, + max: 1507235712000 + }, + metric: { + app: "elasticsearch", + field: "node_stats.indices.indexing.index_total", + metricAgg: "sum", + label: "Indexing", + title: "Latency", + description: "Average latency for indexing documents, which is time it takes to index documents divided by number that were indexed. This considers any shard located on this node, including replicas.", + units: "ms", + format: "0,0.[00]", + hasCalculation: true, + isDerivative: false + }, + data: [ + [ + 1507235520000, + null + ], + [ + 1507235530000, + 0 + ], + [ + 1507235540000, + 0 + ], + [ + 1507235550000, + 0.888888888888889 + ], + [ + 1507235560000, + 1.1666666666666667 + ], + [ + 1507235570000, + 0 + ], + [ + 1507235580000, + 0 + ], + [ + 1507235590000, + 0 + ], + [ + 1507235600000, + 0 + ], + [ + 1507235610000, + 1.3333333333333333 + ], + [ + 1507235620000, + 1.1666666666666667 + ], + [ + 1507235630000, + 0 + ], + [ + 1507235640000, + 0 + ], + [ + 1507235650000, + 0 + ], + [ + 1507235660000, + 0 + ], + [ + 1507235670000, + 2.3333333333333335 + ], + [ + 1507235680000, + 2.8749999999999996 + ], + [ + 1507235690000, + 0 + ], + [ + 1507235700000, + 0 + ] + ] + } ] } } From 6dcf3eeeb5974d26214ee9cb098160d831652cb3 Mon Sep 17 00:00:00 2001 From: ruflin Date: Tue, 23 Oct 2018 11:01:10 +0200 Subject: [PATCH 6/7] one more fix --- .../fixtures/node_detail_advanced.json | 5389 +++++------------ 1 file changed, 1555 insertions(+), 3834 deletions(-) diff --git a/x-pack/test/api_integration/apis/monitoring/elasticsearch/fixtures/node_detail_advanced.json b/x-pack/test/api_integration/apis/monitoring/elasticsearch/fixtures/node_detail_advanced.json index b3c20c7e21e67..acb7ca71f0e2a 100644 --- a/x-pack/test/api_integration/apis/monitoring/elasticsearch/fixtures/node_detail_advanced.json +++ b/x-pack/test/api_integration/apis/monitoring/elasticsearch/fixtures/node_detail_advanced.json @@ -1,3839 +1,1560 @@ { - nodeSummary: { - resolver: "jUT5KdxfRbORSCWkb5zjmA", - node_ids: [ - "jUT5KdxfRbORSCWkb5zjmA" - ], - attributes: { - ml.max_open_jobs: "10", - ml.enabled: "true" + "nodeSummary": { + "resolver": "jUT5KdxfRbORSCWkb5zjmA", + "node_ids": ["jUT5KdxfRbORSCWkb5zjmA"], + "attributes": { + "ml.max_open_jobs": "10", + "ml.enabled": "true" }, - transport_address: "127.0.0.1:9300", - name: "whatever-01", - type: "master", - nodeTypeLabel: "Master Node", - nodeTypeClass: "fa-star", - totalShards: 38, - indexCount: 20, - documents: 24830, - dataSize: 52847579, - freeSpace: 186755088384, - usedHeap: 29, - status: "Online", - isOnline: true + "transport_address": "127.0.0.1:9300", + "name": "whatever-01", + "type": "master", + "nodeTypeLabel": "Master Node", + "nodeTypeClass": "fa-star", + "totalShards": 38, + "indexCount": 20, + "documents": 24830, + "dataSize": 52847579, + "freeSpace": 186755088384, + "usedHeap": 29, + "status": "Online", + "isOnline": true }, - metrics: { - node_jvm_mem: [ - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.jvm.mem.heap_max_in_bytes", - metricAgg: "max", - label: "Max Heap", - title: "JVM Heap", - description: "Total heap available to Elasticsearch running in the JVM.", - units: "B", - format: "0.0 b", - hasCalculation: false, - isDerivative: false - }, - data: [ - [ - 1507235520000, - 709623808 - ], - [ - 1507235530000, - 709623808 - ], - [ - 1507235540000, - 709623808 - ], - [ - 1507235550000, - 709623808 - ], - [ - 1507235560000, - 709623808 - ], - [ - 1507235570000, - 709623808 - ], - [ - 1507235580000, - 709623808 - ], - [ - 1507235590000, - 709623808 - ], - [ - 1507235600000, - 709623808 - ], - [ - 1507235610000, - 709623808 - ], - [ - 1507235620000, - 709623808 - ], - [ - 1507235630000, - 709623808 - ], - [ - 1507235640000, - 709623808 - ], - [ - 1507235650000, - 709623808 - ], - [ - 1507235660000, - 709623808 - ], - [ - 1507235670000, - 709623808 - ], - [ - 1507235680000, - 709623808 - ], - [ - 1507235690000, - 709623808 - ], - [ - 1507235700000, - 709623808 - ] - ] - }, - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.jvm.mem.heap_used_in_bytes", - metricAgg: "max", - label: "Used Heap", - title: "JVM Heap", - description: "Total heap used by Elasticsearch running in the JVM.", - units: "B", - format: "0.0 b", - hasCalculation: false, - isDerivative: false - }, - data: [ - [ - 1507235520000, - 317052776 - ], - [ - 1507235530000, - 344014976 - ], - [ - 1507235540000, - 368593248 - ], - [ - 1507235550000, - 253850400 - ], - [ - 1507235560000, - 348095032 - ], - [ - 1507235570000, - 182919712 - ], - [ - 1507235580000, - 212395016 - ], - [ - 1507235590000, - 244004144 - ], - [ - 1507235600000, - 270412240 - ], - [ - 1507235610000, - 245052864 - ], - [ - 1507235620000, - 370270616 - ], - [ - 1507235630000, - 196944168 - ], - [ - 1507235640000, - 223491760 - ], - [ - 1507235650000, - 253878472 - ], - [ - 1507235660000, - 280811736 - ], - [ - 1507235670000, - 371931976 - ], - [ - 1507235680000, - 329874616 - ], - [ - 1507235690000, - 363869776 - ], - [ - 1507235700000, - 211045968 - ] - ] - } - ], - node_gc: [ - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.jvm.gc.collectors.old.collection_count", - metricAgg: "max", - label: "Old", - title: "GC Count", - description: "Number of old Garbage Collections.", - units: "", - format: "0.[00]", - hasCalculation: false, - isDerivative: true - }, - data: [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - }, - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.jvm.gc.collectors.young.collection_count", - metricAgg: "max", - label: "Young", - title: "GC Count", - description: "Number of young Garbage Collections.", - units: "", - format: "0.[00]", - hasCalculation: false, - isDerivative: true - }, - data: [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0.1 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0.1 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0.1 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0.1 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0.1 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0.1 - ] - ] - } - ], - node_gc_time: [ - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.jvm.gc.collectors.old.collection_time_in_millis", - metricAgg: "max", - label: "Old", - title: "GC Duration", - description: "Time spent performing old Garbage Collections.", - units: "ms", - format: "0,0.[00]", - hasCalculation: false, - isDerivative: true - }, - data: [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - }, - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.jvm.gc.collectors.young.collection_time_in_millis", - metricAgg: "max", - label: "Young", - title: "GC Duration", - description: "Time spent performing young Garbage Collections.", - units: "ms", - format: "0,0.[00]", - hasCalculation: false, - isDerivative: true - }, - data: [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 1.1 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 1.2 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 1 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 1.1 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 2.9 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 2.1 - ] - ] - } - ], - node_index_1: [ - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.indices.segments.memory_in_bytes", - metricAgg: "max", - label: "Lucene Total", - title: "Index Memory - Lucene 1", - description: "Total heap memory used by Lucene for current index. This is the sum of other fields for primary and replica shards on this node.", - units: "B", - format: "0.0 b", - hasCalculation: false, - isDerivative: false - }, - data: [ - [ - 1507235520000, - 4797457 - ], - [ - 1507235530000, - 4797457 - ], - [ - 1507235540000, - 4797457 - ], - [ - 1507235550000, - 4797457 - ], - [ - 1507235560000, - 4823580 - ], - [ - 1507235570000, - 4823580 - ], - [ - 1507235580000, - 4823580 - ], - [ - 1507235590000, - 4823580 - ], - [ - 1507235600000, - 4823580 - ], - [ - 1507235610000, - 4838368 - ], - [ - 1507235620000, - 4741420 - ], - [ - 1507235630000, - 4741420 - ], - [ - 1507235640000, - 4741420 - ], - [ - 1507235650000, - 4741420 - ], - [ - 1507235660000, - 4741420 - ], - [ - 1507235670000, - 4757998 - ], - [ - 1507235680000, - 4787542 - ], - [ - 1507235690000, - 4787542 - ], - [ - 1507235700000, - 4787542 - ] - ] - }, - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.indices.segments.stored_fields_memory_in_bytes", - metricAgg: "max", - label: "Stored Fields", - title: "Index Memory", - description: "Heap memory used by Stored Fields (e.g., _source). This is a part of Lucene Total.", - units: "B", - format: "0.0 b", - hasCalculation: false, - isDerivative: false - }, - data: [ - [ - 1507235520000, - 56792 - ], - [ - 1507235530000, - 56792 - ], - [ - 1507235540000, - 56792 - ], - [ - 1507235550000, - 56792 - ], - [ - 1507235560000, - 57728 - ], - [ - 1507235570000, - 57728 - ], - [ - 1507235580000, - 57728 - ], - [ - 1507235590000, - 57728 - ], - [ - 1507235600000, - 57728 - ], - [ - 1507235610000, - 58352 - ], - [ - 1507235620000, - 56192 - ], - [ - 1507235630000, - 56192 - ], - [ - 1507235640000, - 56192 - ], - [ - 1507235650000, - 56192 - ], - [ - 1507235660000, - 56192 - ], - [ - 1507235670000, - 56816 - ], - [ - 1507235680000, - 57440 - ], - [ - 1507235690000, - 57440 - ], - [ - 1507235700000, - 57440 - ] - ] - }, - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.indices.segments.doc_values_memory_in_bytes", - metricAgg: "max", - label: "Doc Values", - title: "Index Memory", - description: "Heap memory used by Doc Values. This is a part of Lucene Total.", - units: "B", - format: "0.0 b", - hasCalculation: false, - isDerivative: false - }, - data: [ - [ - 1507235520000, - 516824 - ], - [ - 1507235530000, - 516824 - ], - [ - 1507235540000, - 516824 - ], - [ - 1507235550000, - 516824 - ], - [ - 1507235560000, - 517292 - ], - [ - 1507235570000, - 517292 - ], - [ - 1507235580000, - 517292 - ], - [ - 1507235590000, - 517292 - ], - [ - 1507235600000, - 517292 - ], - [ - 1507235610000, - 517612 - ], - [ - 1507235620000, - 514808 - ], - [ - 1507235630000, - 514808 - ], - [ - 1507235640000, - 514808 - ], - [ - 1507235650000, - 514808 - ], - [ - 1507235660000, - 514808 - ], - [ - 1507235670000, - 515312 - ], - [ - 1507235680000, - 516008 - ], - [ - 1507235690000, - 516008 - ], - [ - 1507235700000, - 516008 - ] - ] - }, - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.indices.segments.norms_memory_in_bytes", - metricAgg: "max", - label: "Norms", - title: "Index Memory", - description: "Heap memory used by Norms (normalization factors for query-time, text scoring). This is a part of Lucene Total.", - units: "B", - format: "0.0 b", - hasCalculation: false, - isDerivative: false - }, - data: [ - [ - 1507235520000, - 447232 - ], - [ - 1507235530000, - 447232 - ], - [ - 1507235540000, - 447232 - ], - [ - 1507235550000, - 447232 - ], - [ - 1507235560000, - 449600 - ], - [ - 1507235570000, - 449600 - ], - [ - 1507235580000, - 449600 - ], - [ - 1507235590000, - 449600 - ], - [ - 1507235600000, - 449600 - ], - [ - 1507235610000, - 450880 - ], - [ - 1507235620000, - 442304 - ], - [ - 1507235630000, - 442304 - ], - [ - 1507235640000, - 442304 - ], - [ - 1507235650000, - 442304 - ], - [ - 1507235660000, - 442304 - ], - [ - 1507235670000, - 443840 - ], - [ - 1507235680000, - 446400 - ], - [ - 1507235690000, - 446400 - ], - [ - 1507235700000, - 446400 - ] - ] - } - ], - node_index_2: [ - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.indices.segments.memory_in_bytes", - metricAgg: "max", - label: "Lucene Total", - title: "Index Memory - Lucene 2", - description: "Total heap memory used by Lucene for current index. This is the sum of other fields for primary and replica shards on this node.", - units: "B", - format: "0.0 b", - hasCalculation: false, - isDerivative: false - }, - data: [ - [ - 1507235520000, - 4797457 - ], - [ - 1507235530000, - 4797457 - ], - [ - 1507235540000, - 4797457 - ], - [ - 1507235550000, - 4797457 - ], - [ - 1507235560000, - 4823580 - ], - [ - 1507235570000, - 4823580 - ], - [ - 1507235580000, - 4823580 - ], - [ - 1507235590000, - 4823580 - ], - [ - 1507235600000, - 4823580 - ], - [ - 1507235610000, - 4838368 - ], - [ - 1507235620000, - 4741420 - ], - [ - 1507235630000, - 4741420 - ], - [ - 1507235640000, - 4741420 - ], - [ - 1507235650000, - 4741420 - ], - [ - 1507235660000, - 4741420 - ], - [ - 1507235670000, - 4757998 - ], - [ - 1507235680000, - 4787542 - ], - [ - 1507235690000, - 4787542 - ], - [ - 1507235700000, - 4787542 - ] - ] - }, - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.indices.segments.terms_memory_in_bytes", - metricAgg: "max", - label: "Terms", - title: "Index Memory", - description: "Heap memory used by Terms (e.g., text). This is a part of Lucene Total.", - units: "B", - format: "0.0 b", - hasCalculation: false, - isDerivative: false - }, - data: [ - [ - 1507235520000, - 3764438 - ], - [ - 1507235530000, - 3764438 - ], - [ - 1507235540000, - 3764438 - ], - [ - 1507235550000, - 3764438 - ], - [ - 1507235560000, - 3786762 - ], - [ - 1507235570000, - 3786762 - ], - [ - 1507235580000, - 3786762 - ], - [ - 1507235590000, - 3786762 - ], - [ - 1507235600000, - 3786762 - ], - [ - 1507235610000, - 3799306 - ], - [ - 1507235620000, - 3715996 - ], - [ - 1507235630000, - 3715996 - ], - [ - 1507235640000, - 3715996 - ], - [ - 1507235650000, - 3715996 - ], - [ - 1507235660000, - 3715996 - ], - [ - 1507235670000, - 3729890 - ], - [ - 1507235680000, - 3755528 - ], - [ - 1507235690000, - 3755528 - ], - [ - 1507235700000, - 3755528 - ] - ] - }, - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.indices.segments.points_memory_in_bytes", - metricAgg: "max", - label: "Points", - title: "Index Memory", - description: "Heap memory used by Points (e.g., numbers, IPs, and geo data). This is a part of Lucene Total.", - units: "B", - format: "0.0 b", - hasCalculation: false, - isDerivative: false - }, - data: [ - [ - 1507235520000, - 12171 - ], - [ - 1507235530000, - 12171 - ], - [ - 1507235540000, - 12171 - ], - [ - 1507235550000, - 12171 - ], - [ - 1507235560000, - 12198 - ], - [ - 1507235570000, - 12198 - ], - [ - 1507235580000, - 12198 - ], - [ - 1507235590000, - 12198 - ], - [ - 1507235600000, - 12198 - ], - [ - 1507235610000, - 12218 - ], - [ - 1507235620000, - 12120 - ], - [ - 1507235630000, - 12120 - ], - [ - 1507235640000, - 12120 - ], - [ - 1507235650000, - 12120 - ], - [ - 1507235660000, - 12120 - ], - [ - 1507235670000, - 12140 - ], - [ - 1507235680000, - 12166 - ], - [ - 1507235690000, - 12166 - ], - [ - 1507235700000, - 12166 - ] - ] - } - ], - node_index_3: [ - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.indices.segments.memory_in_bytes", - metricAgg: "max", - label: "Lucene Total", - title: "Index Memory - Lucene 3", - description: "Total heap memory used by Lucene for current index. This is the sum of other fields for primary and replica shards on this node.", - units: "B", - format: "0.0 b", - hasCalculation: false, - isDerivative: false - }, - data: [ - [ - 1507235520000, - 4797457 - ], - [ - 1507235530000, - 4797457 - ], - [ - 1507235540000, - 4797457 - ], - [ - 1507235550000, - 4797457 - ], - [ - 1507235560000, - 4823580 - ], - [ - 1507235570000, - 4823580 - ], - [ - 1507235580000, - 4823580 - ], - [ - 1507235590000, - 4823580 - ], - [ - 1507235600000, - 4823580 - ], - [ - 1507235610000, - 4838368 - ], - [ - 1507235620000, - 4741420 - ], - [ - 1507235630000, - 4741420 - ], - [ - 1507235640000, - 4741420 - ], - [ - 1507235650000, - 4741420 - ], - [ - 1507235660000, - 4741420 - ], - [ - 1507235670000, - 4757998 - ], - [ - 1507235680000, - 4787542 - ], - [ - 1507235690000, - 4787542 - ], - [ - 1507235700000, - 4787542 - ] - ] - }, - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.indices.segments.fixed_bit_set_memory_in_bytes", - metricAgg: "max", - label: "Fixed Bitsets", - title: "Index Memory", - description: "Heap memory used by Fixed Bit Sets (e.g., deeply nested documents). This is a part of Lucene Total.", - units: "B", - format: "0.0 b", - hasCalculation: false, - isDerivative: false - }, - data: [ - [ - 1507235520000, - 4024 - ], - [ - 1507235530000, - 4024 - ], - [ - 1507235540000, - 4024 - ], - [ - 1507235550000, - 4024 - ], - [ - 1507235560000, - 4120 - ], - [ - 1507235570000, - 4120 - ], - [ - 1507235580000, - 4120 - ], - [ - 1507235590000, - 4120 - ], - [ - 1507235600000, - 4120 - ], - [ - 1507235610000, - 4168 - ], - [ - 1507235620000, - 3832 - ], - [ - 1507235630000, - 3832 - ], - [ - 1507235640000, - 3832 - ], - [ - 1507235650000, - 3832 - ], - [ - 1507235660000, - 3832 - ], - [ - 1507235670000, - 3880 - ], - [ - 1507235680000, - 3976 - ], - [ - 1507235690000, - 3976 - ], - [ - 1507235700000, - 3976 - ] - ] - }, - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.indices.segments.term_vectors_memory_in_bytes", - metricAgg: "max", - label: "Term Vectors", - title: "Index Memory", - description: "Heap memory used by Term Vectors. This is a part of Lucene Total.", - units: "B", - format: "0.0 b", - hasCalculation: false, - isDerivative: false - }, - data: [ - [ - 1507235520000, - 0 - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - }, - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.indices.segments.version_map_memory_in_bytes", - metricAgg: "max", - label: "Version Map", - title: "Index Memory", - description: "Heap memory used by Versioning (e.g., updates and deletes). This is NOT a part of Lucene Total.", - units: "B", - format: "0.0 b", - hasCalculation: false, - isDerivative: false - }, - data: [ - [ - 1507235520000, - 5551 - ], - [ - 1507235530000, - 5551 - ], - [ - 1507235540000, - 5551 - ], - [ - 1507235550000, - 6594 - ], - [ - 1507235560000, - 6662 - ], - [ - 1507235570000, - 6662 - ], - [ - 1507235580000, - 6662 - ], - [ - 1507235590000, - 6662 - ], - [ - 1507235600000, - 6662 - ], - [ - 1507235610000, - 7531 - ], - [ - 1507235620000, - 7837 - ], - [ - 1507235630000, - 7837 - ], - [ - 1507235640000, - 7837 - ], - [ - 1507235650000, - 7837 - ], - [ - 1507235660000, - 7837 - ], - [ - 1507235670000, - 9974 - ], - [ - 1507235680000, - 9716 - ], - [ - 1507235690000, - 9716 - ], - [ - 1507235700000, - 9716 - ] - ] - } - ], - node_index_4: [ - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.indices.query_cache.memory_size_in_bytes", - metricAgg: "max", - label: "Query Cache", - title: "Index Memory - Elasticsearch", - description: "Heap memory used by Query Cache (e.g., cached filters). This is for the same shards, but not a part of Lucene Total.", - units: "B", - format: "0.0 b", - hasCalculation: false, - isDerivative: false - }, - data: [ - [ - 1507235520000, - 0 - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - }, - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.indices.request_cache.memory_size_in_bytes", - metricAgg: "max", - label: "Request Cache", - title: "Index Memory", - description: "Heap memory used by Request Cache (e.g., instant aggregations). This is for the same shards, but not a part of Lucene Total.", - units: "B", - format: "0.0 b", - hasCalculation: false, - isDerivative: false - }, - data: [ - [ - 1507235520000, - 2921 - ], - [ - 1507235530000, - 2921 - ], - [ - 1507235540000, - 2921 - ], - [ - 1507235550000, - 2921 - ], - [ - 1507235560000, - 2921 - ], - [ - 1507235570000, - 2921 - ], - [ - 1507235580000, - 2921 - ], - [ - 1507235590000, - 2921 - ], - [ - 1507235600000, - 2921 - ], - [ - 1507235610000, - 2921 - ], - [ - 1507235620000, - 2921 - ], - [ - 1507235630000, - 2921 - ], - [ - 1507235640000, - 2921 - ], - [ - 1507235650000, - 2921 - ], - [ - 1507235660000, - 2921 - ], - [ - 1507235670000, - 2921 - ], - [ - 1507235680000, - 2921 - ], - [ - 1507235690000, - 2921 - ], - [ - 1507235700000, - 2921 - ] - ] - }, - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.indices.fielddata.memory_size_in_bytes", - metricAgg: "max", - label: "Fielddata", - title: "Index Memory", - description: "Heap memory used by Fielddata (e.g., global ordinals or explicitly enabled fielddata on text fields). This is for the same shards, but not a part of Lucene Total.", - units: "B", - format: "0.0 b", - hasCalculation: false, - isDerivative: false - }, - data: [ - [ - 1507235520000, - 0 - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - }, - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.indices.segments.index_writer_memory_in_bytes", - metricAgg: "max", - label: "Index Writer", - title: "Index Memory", - description: "Heap memory used by the Index Writer. This is NOT a part of Lucene Total.", - units: "B", - format: "0.0 b", - hasCalculation: false, - isDerivative: false - }, - data: [ - [ - 1507235520000, - 153549 - ], - [ - 1507235530000, - 153549 - ], - [ - 1507235540000, - 153549 - ], - [ - 1507235550000, - 849833 - ], - [ - 1507235560000, - 156505 - ], - [ - 1507235570000, - 156505 - ], - [ - 1507235580000, - 156505 - ], - [ - 1507235590000, - 156505 - ], - [ - 1507235600000, - 156505 - ], - [ - 1507235610000, - 3140275 - ], - [ - 1507235620000, - 159637 - ], - [ - 1507235630000, - 159637 - ], - [ - 1507235640000, - 159637 - ], - [ - 1507235650000, - 159637 - ], - [ - 1507235660000, - 159637 - ], - [ - 1507235670000, - 3737997 - ], - [ - 1507235680000, - 164351 - ], - [ - 1507235690000, - 164351 - ], - [ - 1507235700000, - 164351 - ] - ] - } - ], - node_request_total: [ - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.indices.search.query_total", - metricAgg: "max", - label: "Search Total", - title: "Request Rate", - description: "Amount of search operations (per shard).", - units: "", - format: "0,0.[00]", - hasCalculation: false, - isDerivative: true - }, - data: [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0.3 - ], - [ - 1507235540000, - 0.3 - ], - [ - 1507235550000, - 0.3 - ], - [ - 1507235560000, - 0.3 - ], - [ - 1507235570000, - 0.3 - ], - [ - 1507235580000, - 0.3 - ], - [ - 1507235590000, - 0.4 - ], - [ - 1507235600000, - 0.3 - ], - [ - 1507235610000, - 0.5 - ], - [ - 1507235620000, - 0.3 - ], - [ - 1507235630000, - 0.3 - ], - [ - 1507235640000, - 0.2 - ], - [ - 1507235650000, - 0.3 - ], - [ - 1507235660000, - 0.3 - ], - [ - 1507235670000, - 0.5 - ], - [ - 1507235680000, - 0.5 - ], - [ - 1507235690000, - 0.1 - ], - [ - 1507235700000, - 0.4 - ] - ] - }, - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.indices.indexing.index_total", - metricAgg: "max", - label: "Indexing Total", - title: "Request Rate", - description: "Amount of indexing operations.", - units: "", - format: "0,0.[00]", - hasCalculation: false, - isDerivative: true - }, - data: [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0.9 - ], - [ - 1507235560000, - 0.6 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0.9 - ], - [ - 1507235620000, - 0.6 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 1.8 - ], - [ - 1507235680000, - 0.8 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - } - ], - node_index_time: [ - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.indices.indexing.index_time_in_millis", - metricAgg: "max", - label: "Index Time", - title: "Indexing Time", - description: "Amount of time spent on indexing operations.", - units: "ms", - format: "0,0.[00]", - hasCalculation: false, - isDerivative: true - }, - data: [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0.8 - ], - [ - 1507235560000, - 0.7 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 1.2 - ], - [ - 1507235620000, - 0.7 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 4.2 - ], - [ - 1507235680000, - 2.3 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - }, - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.indices.indexing.throttle_time_in_millis", - metricAgg: "max", - label: "Index Throttling Time", - title: "Indexing Time", - description: "Amount of time spent with index throttling, which indicates slow disks on a node.", - units: "ms", - format: "0,0.[00]", - hasCalculation: false, - isDerivative: true - }, - data: [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - } - ], - node_index_threads: [ - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.thread_pool.write.queue", - metricAgg: "max", - label: "Write Queue", - title: "Indexing Threads", - description: "Number of index, bulk, and write operations in the queue. The bulk threadpool was renamed to write in 6.3, and the index threadpool is deprecated.", - units: "", - format: "0.[00]", - hasCalculation: true, - isDerivative: false - }, - data: [ - [ - 1507235520000, - 0 - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - }, - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.thread_pool.write.rejected", - metricAgg: "max", - label: "Write Rejections", - title: "Indexing Threads", - description: "Number of index, bulk, and write operations that have been rejected, which occurs when the queue is full. The bulk threadpool was renamed to write in 6.3, and the index threadpool is deprecated.", - units: "", - format: "0.[00]", - hasCalculation: true, - isDerivative: false - }, - data: [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - } - ], - node_read_threads: [ - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.thread_pool.search.queue", - metricAgg: "max", - label: "Search Queue", - title: "Read Threads", - description: "Number of search operations in the queue (e.g., shard level searches).", - units: "", - format: "0,0.[00]", - hasCalculation: false, - isDerivative: true - }, - data: [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0.2 - ], - [ - 1507235680000, - null - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - }, - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.thread_pool.search.rejected", - metricAgg: "max", - label: "Search Rejections", - title: "Read Threads", - description: "Number of search operations that have been rejected, which occurs when the queue is full.", - units: "", - format: "0,0.[00]", - hasCalculation: false, - isDerivative: true - }, - data: [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - }, - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.thread_pool.get.queue", - metricAgg: "max", - label: "GET Queue", - title: "Read Threads", - description: "Number of GET operations in the queue.", - units: "", - format: "0,0.[00]", - hasCalculation: false, - isDerivative: true - }, - data: [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - }, - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.thread_pool.get.rejected", - metricAgg: "max", - label: "GET Rejections", - title: "Read Threads", - description: "Number of GET operations that have been rejected, which occurs when the queue is full.", - units: "", - format: "0,0.[00]", - hasCalculation: false, - isDerivative: true - }, - data: [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - } - ], - node_cpu_utilization: [ - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.process.cpu.percent", - metricAgg: "max", - label: "CPU Utilization", - description: "Percentage of CPU usage for the Elasticsearch process.", - units: "%", - format: "0,0.[00]", - hasCalculation: false, - isDerivative: false - }, - data: [ - [ - 1507235520000, - 1 - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 1 - ], - [ - 1507235560000, - 2 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 2 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 3 - ], - [ - 1507235620000, - 2 - ], - [ - 1507235630000, - 2 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 1 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 2 - ], - [ - 1507235680000, - 2 - ], - [ - 1507235690000, - 1 - ], - [ - 1507235700000, - 0 - ] - ] - }, - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.process.cpu.percent", - metricAgg: "max", - label: "Cgroup CPU Utilization", - title: "CPU Utilization", - description: "CPU Usage time compared to the CPU quota shown in percentage. If CPU quotas are not set, then no data will be shown.", - units: "%", - format: "0,0.[00]", - hasCalculation: true, - isDerivative: true - }, - data: [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - null - ], - [ - 1507235540000, - null - ], - [ - 1507235550000, - null - ], - [ - 1507235560000, - null - ], - [ - 1507235570000, - null - ], - [ - 1507235580000, - null - ], - [ - 1507235590000, - null - ], - [ - 1507235600000, - null - ], - [ - 1507235610000, - null - ], - [ - 1507235620000, - null - ], - [ - 1507235630000, - null - ], - [ - 1507235640000, - null - ], - [ - 1507235650000, - null - ], - [ - 1507235660000, - null - ], - [ - 1507235670000, - null - ], - [ - 1507235680000, - null - ], - [ - 1507235690000, - null - ], - [ - 1507235700000, - null - ] - ] - } - ], - node_cgroup_cpu: [ - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.os.cgroup.cpuacct.usage_nanos", - metricAgg: "max", - label: "Cgroup Usage", - title: "Cgroup CPU Performance", - description: "The usage, reported in nanoseconds, of the Cgroup. Compare this with the throttling to discover issues.", - units: "ns", - format: "0,0.[0]a", - hasCalculation: false, - isDerivative: true - }, - data: [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - null - ], - [ - 1507235540000, - null - ], - [ - 1507235550000, - null - ], - [ - 1507235560000, - null - ], - [ - 1507235570000, - null - ], - [ - 1507235580000, - null - ], - [ - 1507235590000, - null - ], - [ - 1507235600000, - null - ], - [ - 1507235610000, - null - ], - [ - 1507235620000, - null - ], - [ - 1507235630000, - null - ], - [ - 1507235640000, - null - ], - [ - 1507235650000, - null - ], - [ - 1507235660000, - null - ], - [ - 1507235670000, - null - ], - [ - 1507235680000, - null - ], - [ - 1507235690000, - null - ], - [ - 1507235700000, - null - ] - ] - }, - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.os.cgroup.cpu.stat.time_throttled_nanos", - metricAgg: "max", - label: "Cgroup Throttling", - title: "Cgroup CPU Performance", - description: "The amount of throttled time, reported in nanoseconds, of the Cgroup.", - units: "ns", - format: "0,0.[0]a", - hasCalculation: false, - isDerivative: true - }, - data: [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - null - ], - [ - 1507235540000, - null - ], - [ - 1507235550000, - null - ], - [ - 1507235560000, - null - ], - [ - 1507235570000, - null - ], - [ - 1507235580000, - null - ], - [ - 1507235590000, - null - ], - [ - 1507235600000, - null - ], - [ - 1507235610000, - null - ], - [ - 1507235620000, - null - ], - [ - 1507235630000, - null - ], - [ - 1507235640000, - null - ], - [ - 1507235650000, - null - ], - [ - 1507235660000, - null - ], - [ - 1507235670000, - null - ], - [ - 1507235680000, - null - ], - [ - 1507235690000, - null - ], - [ - 1507235700000, - null - ] - ] - } - ], - node_cgroup_stats: [ - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.os.cgroup.cpu.stat.number_of_elapsed_periods", - metricAgg: "max", - label: "Cgroup Elapsed Periods", - title: "Cgroup CFS Stats", - description: "The number of sampling periods from the Completely Fair Scheduler (CFS). Compare against the number of times throttled.", - units: "", - format: "0,0.[00]", - hasCalculation: false, - isDerivative: true - }, - data: [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - null - ], - [ - 1507235540000, - null - ], - [ - 1507235550000, - null - ], - [ - 1507235560000, - null - ], - [ - 1507235570000, - null - ], - [ - 1507235580000, - null - ], - [ - 1507235590000, - null - ], - [ - 1507235600000, - null - ], - [ - 1507235610000, - null - ], - [ - 1507235620000, - null - ], - [ - 1507235630000, - null - ], - [ - 1507235640000, - null - ], - [ - 1507235650000, - null - ], - [ - 1507235660000, - null - ], - [ - 1507235670000, - null - ], - [ - 1507235680000, - null - ], - [ - 1507235690000, - null - ], - [ - 1507235700000, - null - ] - ] - }, - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.os.cgroup.cpu.stat.number_of_times_throttled", - metricAgg: "max", - label: "Cgroup Throttled Count", - title: "Cgroup CFS Stats", - description: "The number of times that the CPU was throttled by the Cgroup.", - units: "", - format: "0,0.[00]", - hasCalculation: false, - isDerivative: true - }, - data: [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - null - ], - [ - 1507235540000, - null - ], - [ - 1507235550000, - null - ], - [ - 1507235560000, - null - ], - [ - 1507235570000, - null - ], - [ - 1507235580000, - null - ], - [ - 1507235590000, - null - ], - [ - 1507235600000, - null - ], - [ - 1507235610000, - null - ], - [ - 1507235620000, - null - ], - [ - 1507235630000, - null - ], - [ - 1507235640000, - null - ], - [ - 1507235650000, - null - ], - [ - 1507235660000, - null - ], - [ - 1507235670000, - null - ], - [ - 1507235680000, - null - ], - [ - 1507235690000, - null - ], - [ - 1507235700000, - null - ] - ] - } - ], - node_latency: [ - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.indices.search.query_total", - metricAgg: "sum", - label: "Search", - title: "Latency", - description: "Average latency for searching, which is time it takes to execute searches divided by number of searches submitted. This considers primary and replica shards.", - units: "ms", - format: "0,0.[00]", - hasCalculation: true, - isDerivative: false - }, - data: [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0.33333333333333337 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0.33333333333333337 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0.33333333333333337 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0.33333333333333337 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0.33333333333333337 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0.2 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - }, - { - bucket_size: "10 seconds", - timeRange: { - min: 1507235508000, - max: 1507235712000 - }, - metric: { - app: "elasticsearch", - field: "node_stats.indices.indexing.index_total", - metricAgg: "sum", - label: "Indexing", - title: "Latency", - description: "Average latency for indexing documents, which is time it takes to index documents divided by number that were indexed. This considers any shard located on this node, including replicas.", - units: "ms", - format: "0,0.[00]", - hasCalculation: true, - isDerivative: false - }, - data: [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0.888888888888889 - ], - [ - 1507235560000, - 1.1666666666666667 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 1.3333333333333333 - ], - [ - 1507235620000, - 1.1666666666666667 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 2.3333333333333335 - ], - [ - 1507235680000, - 2.8749999999999996 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - } - ] + "metrics": { + "node_jvm_mem": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.jvm.mem.heap_max_in_bytes", + "metricAgg": "max", + "label": "Max Heap", + "title": "JVM Heap", + "description": "Total heap available to Elasticsearch running in the JVM.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 709623808], + [1507235530000, 709623808], + [1507235540000, 709623808], + [1507235550000, 709623808], + [1507235560000, 709623808], + [1507235570000, 709623808], + [1507235580000, 709623808], + [1507235590000, 709623808], + [1507235600000, 709623808], + [1507235610000, 709623808], + [1507235620000, 709623808], + [1507235630000, 709623808], + [1507235640000, 709623808], + [1507235650000, 709623808], + [1507235660000, 709623808], + [1507235670000, 709623808], + [1507235680000, 709623808], + [1507235690000, 709623808], + [1507235700000, 709623808] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.jvm.mem.heap_used_in_bytes", + "metricAgg": "max", + "label": "Used Heap", + "title": "JVM Heap", + "description": "Total heap used by Elasticsearch running in the JVM.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 317052776], + [1507235530000, 344014976], + [1507235540000, 368593248], + [1507235550000, 253850400], + [1507235560000, 348095032], + [1507235570000, 182919712], + [1507235580000, 212395016], + [1507235590000, 244004144], + [1507235600000, 270412240], + [1507235610000, 245052864], + [1507235620000, 370270616], + [1507235630000, 196944168], + [1507235640000, 223491760], + [1507235650000, 253878472], + [1507235660000, 280811736], + [1507235670000, 371931976], + [1507235680000, 329874616], + [1507235690000, 363869776], + [1507235700000, 211045968] + ] + }], + "node_gc": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.jvm.gc.collectors.old.collection_count", + "metricAgg": "max", + "label": "Old", + "title": "GC Count", + "description": "Number of old Garbage Collections.", + "units": "", + "format": "0.[00]", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.jvm.gc.collectors.young.collection_count", + "metricAgg": "max", + "label": "Young", + "title": "GC Count", + "description": "Number of young Garbage Collections.", + "units": "", + "format": "0.[00]", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0.1], + [1507235560000, 0], + [1507235570000, 0.1], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0.1], + [1507235620000, 0], + [1507235630000, 0.1], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0.1], + [1507235690000, 0], + [1507235700000, 0.1] + ] + }], + "node_gc_time": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.jvm.gc.collectors.old.collection_time_in_millis", + "metricAgg": "max", + "label": "Old", + "title": "GC Duration", + "description": "Time spent performing old Garbage Collections.", + "units": "ms", + "format": "0,0.[00]", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.jvm.gc.collectors.young.collection_time_in_millis", + "metricAgg": "max", + "label": "Young", + "title": "GC Duration", + "description": "Time spent performing young Garbage Collections.", + "units": "ms", + "format": "0,0.[00]", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 1.1], + [1507235560000, 0], + [1507235570000, 1.2], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 1], + [1507235620000, 0], + [1507235630000, 1.1], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 2.9], + [1507235690000, 0], + [1507235700000, 2.1] + ] + }], + "node_index_1": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.indices.segments.memory_in_bytes", + "metricAgg": "max", + "label": "Lucene Total", + "title": "Index Memory - Lucene 1", + "description": "Total heap memory used by Lucene for current index. This is the sum of other fields for primary and replica shards on this node.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 4797457], + [1507235530000, 4797457], + [1507235540000, 4797457], + [1507235550000, 4797457], + [1507235560000, 4823580], + [1507235570000, 4823580], + [1507235580000, 4823580], + [1507235590000, 4823580], + [1507235600000, 4823580], + [1507235610000, 4838368], + [1507235620000, 4741420], + [1507235630000, 4741420], + [1507235640000, 4741420], + [1507235650000, 4741420], + [1507235660000, 4741420], + [1507235670000, 4757998], + [1507235680000, 4787542], + [1507235690000, 4787542], + [1507235700000, 4787542] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.indices.segments.stored_fields_memory_in_bytes", + "metricAgg": "max", + "label": "Stored Fields", + "title": "Index Memory", + "description": "Heap memory used by Stored Fields (e.g., _source). This is a part of Lucene Total.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 56792], + [1507235530000, 56792], + [1507235540000, 56792], + [1507235550000, 56792], + [1507235560000, 57728], + [1507235570000, 57728], + [1507235580000, 57728], + [1507235590000, 57728], + [1507235600000, 57728], + [1507235610000, 58352], + [1507235620000, 56192], + [1507235630000, 56192], + [1507235640000, 56192], + [1507235650000, 56192], + [1507235660000, 56192], + [1507235670000, 56816], + [1507235680000, 57440], + [1507235690000, 57440], + [1507235700000, 57440] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.indices.segments.doc_values_memory_in_bytes", + "metricAgg": "max", + "label": "Doc Values", + "title": "Index Memory", + "description": "Heap memory used by Doc Values. This is a part of Lucene Total.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 516824], + [1507235530000, 516824], + [1507235540000, 516824], + [1507235550000, 516824], + [1507235560000, 517292], + [1507235570000, 517292], + [1507235580000, 517292], + [1507235590000, 517292], + [1507235600000, 517292], + [1507235610000, 517612], + [1507235620000, 514808], + [1507235630000, 514808], + [1507235640000, 514808], + [1507235650000, 514808], + [1507235660000, 514808], + [1507235670000, 515312], + [1507235680000, 516008], + [1507235690000, 516008], + [1507235700000, 516008] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.indices.segments.norms_memory_in_bytes", + "metricAgg": "max", + "label": "Norms", + "title": "Index Memory", + "description": "Heap memory used by Norms (normalization factors for query-time, text scoring). This is a part of Lucene Total.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 447232], + [1507235530000, 447232], + [1507235540000, 447232], + [1507235550000, 447232], + [1507235560000, 449600], + [1507235570000, 449600], + [1507235580000, 449600], + [1507235590000, 449600], + [1507235600000, 449600], + [1507235610000, 450880], + [1507235620000, 442304], + [1507235630000, 442304], + [1507235640000, 442304], + [1507235650000, 442304], + [1507235660000, 442304], + [1507235670000, 443840], + [1507235680000, 446400], + [1507235690000, 446400], + [1507235700000, 446400] + ] + }], + "node_index_2": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.indices.segments.memory_in_bytes", + "metricAgg": "max", + "label": "Lucene Total", + "title": "Index Memory - Lucene 2", + "description": "Total heap memory used by Lucene for current index. This is the sum of other fields for primary and replica shards on this node.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 4797457], + [1507235530000, 4797457], + [1507235540000, 4797457], + [1507235550000, 4797457], + [1507235560000, 4823580], + [1507235570000, 4823580], + [1507235580000, 4823580], + [1507235590000, 4823580], + [1507235600000, 4823580], + [1507235610000, 4838368], + [1507235620000, 4741420], + [1507235630000, 4741420], + [1507235640000, 4741420], + [1507235650000, 4741420], + [1507235660000, 4741420], + [1507235670000, 4757998], + [1507235680000, 4787542], + [1507235690000, 4787542], + [1507235700000, 4787542] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.indices.segments.terms_memory_in_bytes", + "metricAgg": "max", + "label": "Terms", + "title": "Index Memory", + "description": "Heap memory used by Terms (e.g., text). This is a part of Lucene Total.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 3764438], + [1507235530000, 3764438], + [1507235540000, 3764438], + [1507235550000, 3764438], + [1507235560000, 3786762], + [1507235570000, 3786762], + [1507235580000, 3786762], + [1507235590000, 3786762], + [1507235600000, 3786762], + [1507235610000, 3799306], + [1507235620000, 3715996], + [1507235630000, 3715996], + [1507235640000, 3715996], + [1507235650000, 3715996], + [1507235660000, 3715996], + [1507235670000, 3729890], + [1507235680000, 3755528], + [1507235690000, 3755528], + [1507235700000, 3755528] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.indices.segments.points_memory_in_bytes", + "metricAgg": "max", + "label": "Points", + "title": "Index Memory", + "description": "Heap memory used by Points (e.g., numbers, IPs, and geo data). This is a part of Lucene Total.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 12171], + [1507235530000, 12171], + [1507235540000, 12171], + [1507235550000, 12171], + [1507235560000, 12198], + [1507235570000, 12198], + [1507235580000, 12198], + [1507235590000, 12198], + [1507235600000, 12198], + [1507235610000, 12218], + [1507235620000, 12120], + [1507235630000, 12120], + [1507235640000, 12120], + [1507235650000, 12120], + [1507235660000, 12120], + [1507235670000, 12140], + [1507235680000, 12166], + [1507235690000, 12166], + [1507235700000, 12166] + ] + }], + "node_index_3": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.indices.segments.memory_in_bytes", + "metricAgg": "max", + "label": "Lucene Total", + "title": "Index Memory - Lucene 3", + "description": "Total heap memory used by Lucene for current index. This is the sum of other fields for primary and replica shards on this node.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 4797457], + [1507235530000, 4797457], + [1507235540000, 4797457], + [1507235550000, 4797457], + [1507235560000, 4823580], + [1507235570000, 4823580], + [1507235580000, 4823580], + [1507235590000, 4823580], + [1507235600000, 4823580], + [1507235610000, 4838368], + [1507235620000, 4741420], + [1507235630000, 4741420], + [1507235640000, 4741420], + [1507235650000, 4741420], + [1507235660000, 4741420], + [1507235670000, 4757998], + [1507235680000, 4787542], + [1507235690000, 4787542], + [1507235700000, 4787542] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.indices.segments.fixed_bit_set_memory_in_bytes", + "metricAgg": "max", + "label": "Fixed Bitsets", + "title": "Index Memory", + "description": "Heap memory used by Fixed Bit Sets (e.g., deeply nested documents). This is a part of Lucene Total.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 4024], + [1507235530000, 4024], + [1507235540000, 4024], + [1507235550000, 4024], + [1507235560000, 4120], + [1507235570000, 4120], + [1507235580000, 4120], + [1507235590000, 4120], + [1507235600000, 4120], + [1507235610000, 4168], + [1507235620000, 3832], + [1507235630000, 3832], + [1507235640000, 3832], + [1507235650000, 3832], + [1507235660000, 3832], + [1507235670000, 3880], + [1507235680000, 3976], + [1507235690000, 3976], + [1507235700000, 3976] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.indices.segments.term_vectors_memory_in_bytes", + "metricAgg": "max", + "label": "Term Vectors", + "title": "Index Memory", + "description": "Heap memory used by Term Vectors. This is a part of Lucene Total.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 0], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.indices.segments.version_map_memory_in_bytes", + "metricAgg": "max", + "label": "Version Map", + "title": "Index Memory", + "description": "Heap memory used by Versioning (e.g., updates and deletes). This is NOT a part of Lucene Total.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 5551], + [1507235530000, 5551], + [1507235540000, 5551], + [1507235550000, 6594], + [1507235560000, 6662], + [1507235570000, 6662], + [1507235580000, 6662], + [1507235590000, 6662], + [1507235600000, 6662], + [1507235610000, 7531], + [1507235620000, 7837], + [1507235630000, 7837], + [1507235640000, 7837], + [1507235650000, 7837], + [1507235660000, 7837], + [1507235670000, 9974], + [1507235680000, 9716], + [1507235690000, 9716], + [1507235700000, 9716] + ] + }], + "node_index_4": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.indices.query_cache.memory_size_in_bytes", + "metricAgg": "max", + "label": "Query Cache", + "title": "Index Memory - Elasticsearch", + "description": "Heap memory used by Query Cache (e.g., cached filters). This is for the same shards, but not a part of Lucene Total.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 0], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.indices.request_cache.memory_size_in_bytes", + "metricAgg": "max", + "label": "Request Cache", + "title": "Index Memory", + "description": "Heap memory used by Request Cache (e.g., instant aggregations). This is for the same shards, but not a part of Lucene Total.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 2921], + [1507235530000, 2921], + [1507235540000, 2921], + [1507235550000, 2921], + [1507235560000, 2921], + [1507235570000, 2921], + [1507235580000, 2921], + [1507235590000, 2921], + [1507235600000, 2921], + [1507235610000, 2921], + [1507235620000, 2921], + [1507235630000, 2921], + [1507235640000, 2921], + [1507235650000, 2921], + [1507235660000, 2921], + [1507235670000, 2921], + [1507235680000, 2921], + [1507235690000, 2921], + [1507235700000, 2921] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.indices.fielddata.memory_size_in_bytes", + "metricAgg": "max", + "label": "Fielddata", + "title": "Index Memory", + "description": "Heap memory used by Fielddata (e.g., global ordinals or explicitly enabled fielddata on text fields). This is for the same shards, but not a part of Lucene Total.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 0], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.indices.segments.index_writer_memory_in_bytes", + "metricAgg": "max", + "label": "Index Writer", + "title": "Index Memory", + "description": "Heap memory used by the Index Writer. This is NOT a part of Lucene Total.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 153549], + [1507235530000, 153549], + [1507235540000, 153549], + [1507235550000, 849833], + [1507235560000, 156505], + [1507235570000, 156505], + [1507235580000, 156505], + [1507235590000, 156505], + [1507235600000, 156505], + [1507235610000, 3140275], + [1507235620000, 159637], + [1507235630000, 159637], + [1507235640000, 159637], + [1507235650000, 159637], + [1507235660000, 159637], + [1507235670000, 3737997], + [1507235680000, 164351], + [1507235690000, 164351], + [1507235700000, 164351] + ] + }], + "node_request_total": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.indices.search.query_total", + "metricAgg": "max", + "label": "Search Total", + "title": "Request Rate", + "description": "Amount of search operations (per shard).", + "units": "", + "format": "0,0.[00]", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, 0.3], + [1507235540000, 0.3], + [1507235550000, 0.3], + [1507235560000, 0.3], + [1507235570000, 0.3], + [1507235580000, 0.3], + [1507235590000, 0.4], + [1507235600000, 0.3], + [1507235610000, 0.5], + [1507235620000, 0.3], + [1507235630000, 0.3], + [1507235640000, 0.2], + [1507235650000, 0.3], + [1507235660000, 0.3], + [1507235670000, 0.5], + [1507235680000, 0.5], + [1507235690000, 0.1], + [1507235700000, 0.4] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.indices.indexing.index_total", + "metricAgg": "max", + "label": "Indexing Total", + "title": "Request Rate", + "description": "Amount of indexing operations.", + "units": "", + "format": "0,0.[00]", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0.9], + [1507235560000, 0.6], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0.9], + [1507235620000, 0.6], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 1.8], + [1507235680000, 0.8], + [1507235690000, 0], + [1507235700000, 0] + ] + }], + "node_index_time": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.indices.indexing.index_time_in_millis", + "metricAgg": "max", + "label": "Index Time", + "title": "Indexing Time", + "description": "Amount of time spent on indexing operations.", + "units": "ms", + "format": "0,0.[00]", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0.8], + [1507235560000, 0.7], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 1.2], + [1507235620000, 0.7], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 4.2], + [1507235680000, 2.3], + [1507235690000, 0], + [1507235700000, 0] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.indices.indexing.throttle_time_in_millis", + "metricAgg": "max", + "label": "Index Throttling Time", + "title": "Indexing Time", + "description": "Amount of time spent with index throttling, which indicates slow disks on a node.", + "units": "ms", + "format": "0,0.[00]", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }], + "node_index_threads": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.thread_pool.write.queue", + "metricAgg": "max", + "label": "Write Queue", + "title": "Indexing Threads", + "description": "Number of index, bulk, and write operations in the queue. The bulk threadpool was renamed to write in 6.3, and the index threadpool is deprecated.", + "units": "", + "format": "0.[00]", + "hasCalculation": true, + "isDerivative": false + }, + "data": [ + [1507235520000, 0], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.thread_pool.write.rejected", + "metricAgg": "max", + "label": "Write Rejections", + "title": "Indexing Threads", + "description": "Number of index, bulk, and write operations that have been rejected, which occurs when the queue is full. The bulk threadpool was renamed to write in 6.3, and the index threadpool is deprecated.", + "units": "", + "format": "0.[00]", + "hasCalculation": true, + "isDerivative": false + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }], + "node_read_threads": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.thread_pool.search.queue", + "metricAgg": "max", + "label": "Search Queue", + "title": "Read Threads", + "description": "Number of search operations in the queue (e.g., shard level searches).", + "units": "", + "format": "0,0.[00]", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0.2], + [1507235680000, null], + [1507235690000, 0], + [1507235700000, 0] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.thread_pool.search.rejected", + "metricAgg": "max", + "label": "Search Rejections", + "title": "Read Threads", + "description": "Number of search operations that have been rejected, which occurs when the queue is full.", + "units": "", + "format": "0,0.[00]", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.thread_pool.get.queue", + "metricAgg": "max", + "label": "GET Queue", + "title": "Read Threads", + "description": "Number of GET operations in the queue.", + "units": "", + "format": "0,0.[00]", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.thread_pool.get.rejected", + "metricAgg": "max", + "label": "GET Rejections", + "title": "Read Threads", + "description": "Number of GET operations that have been rejected, which occurs when the queue is full.", + "units": "", + "format": "0,0.[00]", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }], + "node_cpu_utilization": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.process.cpu.percent", + "metricAgg": "max", + "label": "CPU Utilization", + "description": "Percentage of CPU usage for the Elasticsearch process.", + "units": "%", + "format": "0,0.[00]", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 1], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 1], + [1507235560000, 2], + [1507235570000, 0], + [1507235580000, 2], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 3], + [1507235620000, 2], + [1507235630000, 2], + [1507235640000, 0], + [1507235650000, 1], + [1507235660000, 0], + [1507235670000, 2], + [1507235680000, 2], + [1507235690000, 1], + [1507235700000, 0] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.process.cpu.percent", + "metricAgg": "max", + "label": "Cgroup CPU Utilization", + "title": "CPU Utilization", + "description": "CPU Usage time compared to the CPU quota shown in percentage. If CPU quotas are not set, then no data will be shown.", + "units": "%", + "format": "0,0.[00]", + "hasCalculation": true, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, null], + [1507235540000, null], + [1507235550000, null], + [1507235560000, null], + [1507235570000, null], + [1507235580000, null], + [1507235590000, null], + [1507235600000, null], + [1507235610000, null], + [1507235620000, null], + [1507235630000, null], + [1507235640000, null], + [1507235650000, null], + [1507235660000, null], + [1507235670000, null], + [1507235680000, null], + [1507235690000, null], + [1507235700000, null] + ] + }], + "node_cgroup_cpu": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.os.cgroup.cpuacct.usage_nanos", + "metricAgg": "max", + "label": "Cgroup Usage", + "title": "Cgroup CPU Performance", + "description": "The usage, reported in nanoseconds, of the Cgroup. Compare this with the throttling to discover issues.", + "units": "ns", + "format": "0,0.[0]a", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, null], + [1507235540000, null], + [1507235550000, null], + [1507235560000, null], + [1507235570000, null], + [1507235580000, null], + [1507235590000, null], + [1507235600000, null], + [1507235610000, null], + [1507235620000, null], + [1507235630000, null], + [1507235640000, null], + [1507235650000, null], + [1507235660000, null], + [1507235670000, null], + [1507235680000, null], + [1507235690000, null], + [1507235700000, null] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.os.cgroup.cpu.stat.time_throttled_nanos", + "metricAgg": "max", + "label": "Cgroup Throttling", + "title": "Cgroup CPU Performance", + "description": "The amount of throttled time, reported in nanoseconds, of the Cgroup.", + "units": "ns", + "format": "0,0.[0]a", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, null], + [1507235540000, null], + [1507235550000, null], + [1507235560000, null], + [1507235570000, null], + [1507235580000, null], + [1507235590000, null], + [1507235600000, null], + [1507235610000, null], + [1507235620000, null], + [1507235630000, null], + [1507235640000, null], + [1507235650000, null], + [1507235660000, null], + [1507235670000, null], + [1507235680000, null], + [1507235690000, null], + [1507235700000, null] + ] + }], + "node_cgroup_stats": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "metricAgg": "max", + "label": "Cgroup Elapsed Periods", + "title": "Cgroup CFS Stats", + "description": "The number of sampling periods from the Completely Fair Scheduler (CFS). Compare against the number of times throttled.", + "units": "", + "format": "0,0.[00]", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, null], + [1507235540000, null], + [1507235550000, null], + [1507235560000, null], + [1507235570000, null], + [1507235580000, null], + [1507235590000, null], + [1507235600000, null], + [1507235610000, null], + [1507235620000, null], + [1507235630000, null], + [1507235640000, null], + [1507235650000, null], + [1507235660000, null], + [1507235670000, null], + [1507235680000, null], + [1507235690000, null], + [1507235700000, null] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.os.cgroup.cpu.stat.number_of_times_throttled", + "metricAgg": "max", + "label": "Cgroup Throttled Count", + "title": "Cgroup CFS Stats", + "description": "The number of times that the CPU was throttled by the Cgroup.", + "units": "", + "format": "0,0.[00]", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, null], + [1507235540000, null], + [1507235550000, null], + [1507235560000, null], + [1507235570000, null], + [1507235580000, null], + [1507235590000, null], + [1507235600000, null], + [1507235610000, null], + [1507235620000, null], + [1507235630000, null], + [1507235640000, null], + [1507235650000, null], + [1507235660000, null], + [1507235670000, null], + [1507235680000, null], + [1507235690000, null], + [1507235700000, null] + ] + }], + "node_latency": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.indices.search.query_total", + "metricAgg": "sum", + "label": "Search", + "title": "Latency", + "description": "Average latency for searching, which is time it takes to execute searches divided by number of searches submitted. This considers primary and replica shards.", + "units": "ms", + "format": "0,0.[00]", + "hasCalculation": true, + "isDerivative": false + }, + "data": [ + [1507235520000, null], + [1507235530000, 0.33333333333333337], + [1507235540000, 0], + [1507235550000, 0.33333333333333337], + [1507235560000, 0], + [1507235570000, 0.33333333333333337], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0.33333333333333337], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0.33333333333333337], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0.2], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "node_stats.indices.indexing.index_total", + "metricAgg": "sum", + "label": "Indexing", + "title": "Latency", + "description": "Average latency for indexing documents, which is time it takes to index documents divided by number that were indexed. This considers any shard located on this node, including replicas.", + "units": "ms", + "format": "0,0.[00]", + "hasCalculation": true, + "isDerivative": false + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0.888888888888889], + [1507235560000, 1.1666666666666667], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 1.3333333333333333], + [1507235620000, 1.1666666666666667], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 2.3333333333333335], + [1507235680000, 2.8749999999999996], + [1507235690000, 0], + [1507235700000, 0] + ] + }] } } From f57f82566f48774c498d904114dd7906c1c9575c Mon Sep 17 00:00:00 2001 From: Chris Roberson Date: Tue, 23 Oct 2018 09:51:53 -0400 Subject: [PATCH 7/7] Update fixture --- .../fixtures/index_detail_advanced.json | 4188 +++++------------ 1 file changed, 1258 insertions(+), 2930 deletions(-) diff --git a/x-pack/test/api_integration/apis/monitoring/elasticsearch/fixtures/index_detail_advanced.json b/x-pack/test/api_integration/apis/monitoring/elasticsearch/fixtures/index_detail_advanced.json index ea5bede0db977..01985489bf0d2 100644 --- a/x-pack/test/api_integration/apis/monitoring/elasticsearch/fixtures/index_detail_advanced.json +++ b/x-pack/test/api_integration/apis/monitoring/elasticsearch/fixtures/index_detail_advanced.json @@ -10,2935 +10,1263 @@ "status": "green" }, "metrics": { - "index_1": [ - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.total.segments.memory_in_bytes", - "metricAgg": "max", - "label": "Lucene Total", - "title": "Index Memory - Lucene 1", - "description": "Total heap memory used by Lucene for current index. This is the sum of other fields for primary and replica shards.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ - [ - 1507235520000, - 2378656 - ], - [ - 1507235530000, - 2378656 - ], - [ - 1507235540000, - 2378656 - ], - [ - 1507235550000, - 2378656 - ], - [ - 1507235560000, - 2378656 - ], - [ - 1507235570000, - 2378656 - ], - [ - 1507235580000, - 2378656 - ], - [ - 1507235590000, - 2378656 - ], - [ - 1507235600000, - 2378656 - ], - [ - 1507235610000, - 2378656 - ], - [ - 1507235620000, - 2378656 - ], - [ - 1507235630000, - 2378656 - ], - [ - 1507235640000, - 2378656 - ], - [ - 1507235650000, - 2378656 - ], - [ - 1507235660000, - 2378656 - ], - [ - 1507235670000, - 2378656 - ], - [ - 1507235680000, - 2378656 - ], - [ - 1507235690000, - 2378656 - ], - [ - 1507235700000, - 2378656 - ] - ] - }, - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.total.segments.stored_fields_memory_in_bytes", - "metricAgg": "max", - "label": "Stored Fields", - "title": "Index Memory", - "description": "Heap memory used by Stored Fields (e.g., _source). This is a part of Lucene Total.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ - [ - 1507235520000, - 19024 - ], - [ - 1507235530000, - 19024 - ], - [ - 1507235540000, - 19024 - ], - [ - 1507235550000, - 19024 - ], - [ - 1507235560000, - 19024 - ], - [ - 1507235570000, - 19024 - ], - [ - 1507235580000, - 19024 - ], - [ - 1507235590000, - 19024 - ], - [ - 1507235600000, - 19024 - ], - [ - 1507235610000, - 19024 - ], - [ - 1507235620000, - 19024 - ], - [ - 1507235630000, - 19024 - ], - [ - 1507235640000, - 19024 - ], - [ - 1507235650000, - 19024 - ], - [ - 1507235660000, - 19024 - ], - [ - 1507235670000, - 19024 - ], - [ - 1507235680000, - 19024 - ], - [ - 1507235690000, - 19024 - ], - [ - 1507235700000, - 19024 - ] - ] - }, - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.total.segments.doc_values_memory_in_bytes", - "metricAgg": "max", - "label": "Doc Values", - "title": "Index Memory", - "description": "Heap memory used by Doc Values. This is a part of Lucene Total.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ - [ - 1507235520000, - 232336 - ], - [ - 1507235530000, - 232336 - ], - [ - 1507235540000, - 232336 - ], - [ - 1507235550000, - 232336 - ], - [ - 1507235560000, - 232336 - ], - [ - 1507235570000, - 232336 - ], - [ - 1507235580000, - 232336 - ], - [ - 1507235590000, - 232336 - ], - [ - 1507235600000, - 232336 - ], - [ - 1507235610000, - 232336 - ], - [ - 1507235620000, - 232336 - ], - [ - 1507235630000, - 232336 - ], - [ - 1507235640000, - 232336 - ], - [ - 1507235650000, - 232336 - ], - [ - 1507235660000, - 232336 - ], - [ - 1507235670000, - 232336 - ], - [ - 1507235680000, - 232336 - ], - [ - 1507235690000, - 232336 - ], - [ - 1507235700000, - 232336 - ] - ] - }, - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.total.segments.norms_memory_in_bytes", - "metricAgg": "max", - "label": "Norms", - "title": "Index Memory", - "description": "Heap memory used by Norms (normalization factors for query-time, text scoring). This is a part of Lucene Total.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ - [ - 1507235520000, - 233472 - ], - [ - 1507235530000, - 233472 - ], - [ - 1507235540000, - 233472 - ], - [ - 1507235550000, - 233472 - ], - [ - 1507235560000, - 233472 - ], - [ - 1507235570000, - 233472 - ], - [ - 1507235580000, - 233472 - ], - [ - 1507235590000, - 233472 - ], - [ - 1507235600000, - 233472 - ], - [ - 1507235610000, - 233472 - ], - [ - 1507235620000, - 233472 - ], - [ - 1507235630000, - 233472 - ], - [ - 1507235640000, - 233472 - ], - [ - 1507235650000, - 233472 - ], - [ - 1507235660000, - 233472 - ], - [ - 1507235670000, - 233472 - ], - [ - 1507235680000, - 233472 - ], - [ - 1507235690000, - 233472 - ], - [ - 1507235700000, - 233472 - ] - ] - } - ], - "index_2": [ - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.total.segments.memory_in_bytes", - "metricAgg": "max", - "label": "Lucene Total", - "title": "Index Memory - Lucene 2", - "description": "Total heap memory used by Lucene for current index. This is the sum of other fields for primary and replica shards.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ - [ - 1507235520000, - 2378656 - ], - [ - 1507235530000, - 2378656 - ], - [ - 1507235540000, - 2378656 - ], - [ - 1507235550000, - 2378656 - ], - [ - 1507235560000, - 2378656 - ], - [ - 1507235570000, - 2378656 - ], - [ - 1507235580000, - 2378656 - ], - [ - 1507235590000, - 2378656 - ], - [ - 1507235600000, - 2378656 - ], - [ - 1507235610000, - 2378656 - ], - [ - 1507235620000, - 2378656 - ], - [ - 1507235630000, - 2378656 - ], - [ - 1507235640000, - 2378656 - ], - [ - 1507235650000, - 2378656 - ], - [ - 1507235660000, - 2378656 - ], - [ - 1507235670000, - 2378656 - ], - [ - 1507235680000, - 2378656 - ], - [ - 1507235690000, - 2378656 - ], - [ - 1507235700000, - 2378656 - ] - ] - }, - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.total.segments.terms_memory_in_bytes", - "metricAgg": "max", - "label": "Terms", - "title": "Index Memory", - "description": "Heap memory used by Terms (e.g., text). This is a part of Lucene Total.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ - [ - 1507235520000, - 1889180 - ], - [ - 1507235530000, - 1889180 - ], - [ - 1507235540000, - 1889180 - ], - [ - 1507235550000, - 1889180 - ], - [ - 1507235560000, - 1889180 - ], - [ - 1507235570000, - 1889180 - ], - [ - 1507235580000, - 1889180 - ], - [ - 1507235590000, - 1889180 - ], - [ - 1507235600000, - 1889180 - ], - [ - 1507235610000, - 1889180 - ], - [ - 1507235620000, - 1889180 - ], - [ - 1507235630000, - 1889180 - ], - [ - 1507235640000, - 1889180 - ], - [ - 1507235650000, - 1889180 - ], - [ - 1507235660000, - 1889180 - ], - [ - 1507235670000, - 1889180 - ], - [ - 1507235680000, - 1889180 - ], - [ - 1507235690000, - 1889180 - ], - [ - 1507235700000, - 1889180 - ] - ] - }, - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.total.segments.points_memory_in_bytes", - "metricAgg": "max", - "label": "Points", - "title": "Index Memory", - "description": "Heap memory used by Points (e.g., numbers, IPs, and geo data). This is a part of Lucene Total.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ - [ - 1507235520000, - 4644 - ], - [ - 1507235530000, - 4644 - ], - [ - 1507235540000, - 4644 - ], - [ - 1507235550000, - 4644 - ], - [ - 1507235560000, - 4644 - ], - [ - 1507235570000, - 4644 - ], - [ - 1507235580000, - 4644 - ], - [ - 1507235590000, - 4644 - ], - [ - 1507235600000, - 4644 - ], - [ - 1507235610000, - 4644 - ], - [ - 1507235620000, - 4644 - ], - [ - 1507235630000, - 4644 - ], - [ - 1507235640000, - 4644 - ], - [ - 1507235650000, - 4644 - ], - [ - 1507235660000, - 4644 - ], - [ - 1507235670000, - 4644 - ], - [ - 1507235680000, - 4644 - ], - [ - 1507235690000, - 4644 - ], - [ - 1507235700000, - 4644 - ] - ] - } - ], - "index_3": [ - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.total.segments.memory_in_bytes", - "metricAgg": "max", - "label": "Lucene Total", - "title": "Index Memory - Lucene 3", - "description": "Total heap memory used by Lucene for current index. This is the sum of other fields for primary and replica shards.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ - [ - 1507235520000, - 2378656 - ], - [ - 1507235530000, - 2378656 - ], - [ - 1507235540000, - 2378656 - ], - [ - 1507235550000, - 2378656 - ], - [ - 1507235560000, - 2378656 - ], - [ - 1507235570000, - 2378656 - ], - [ - 1507235580000, - 2378656 - ], - [ - 1507235590000, - 2378656 - ], - [ - 1507235600000, - 2378656 - ], - [ - 1507235610000, - 2378656 - ], - [ - 1507235620000, - 2378656 - ], - [ - 1507235630000, - 2378656 - ], - [ - 1507235640000, - 2378656 - ], - [ - 1507235650000, - 2378656 - ], - [ - 1507235660000, - 2378656 - ], - [ - 1507235670000, - 2378656 - ], - [ - 1507235680000, - 2378656 - ], - [ - 1507235690000, - 2378656 - ], - [ - 1507235700000, - 2378656 - ] - ] - }, - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.total.segments.fixed_bit_set_memory_in_bytes", - "metricAgg": "max", - "label": "Fixed Bitsets", - "title": "Index Memory", - "description": "Heap memory used by Fixed Bit Sets (e.g., deeply nested documents). This is a part of Lucene Total.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ - [ - 1507235520000, - 0 - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - }, - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.total.segments.term_vectors_memory_in_bytes", - "metricAgg": "max", - "label": "Term Vectors", - "title": "Index Memory", - "description": "Heap memory used by Term Vectors. This is a part of Lucene Total.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ - [ - 1507235520000, - 0 - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - }, - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.total.segments.version_map_memory_in_bytes", - "metricAgg": "max", - "label": "Version Map", - "title": "Index Memory", - "description": "Heap memory used by Versioning (e.g., updates and deletes). This is NOT a part of Lucene Total.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ - [ - 1507235520000, - 0 - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - } - ], - "index_4": [ - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.total.query_cache.memory_size_in_bytes", - "metricAgg": "max", - "label": "Query Cache", - "title": "Index Memory - Elasticsearch", - "description": "Heap memory used by Query Cache (e.g., cached filters). This is for the same shards, but not a part of Lucene Total.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ - [ - 1507235520000, - 0 - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - }, - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.total.request_cache.memory_size_in_bytes", - "metricAgg": "max", - "label": "Request Cache", - "title": "Index Memory", - "description": "Heap memory used by Request Cache (e.g., instant aggregations). This is for the same shards, but not a part of Lucene Total.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ - [ - 1507235520000, - 0 - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - }, - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.total.fielddata.memory_size_in_bytes", - "metricAgg": "max", - "label": "Fielddata", - "title": "Index Memory", - "description": "Heap memory used by Fielddata (e.g., global ordinals or explicitly enabled fielddata on text fields). This is for the same shards, but not a part of Lucene Total.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ - [ - 1507235520000, - 0 - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - }, - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.total.segments.index_writer_memory_in_bytes", - "metricAgg": "max", - "label": "Index Writer", - "title": "Index Memory", - "description": "Heap memory used by the Index Writer. This is NOT a part of Lucene Total.", - "units": "B", - "format": "0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ - [ - 1507235520000, - 0 - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - } - ], - "index_total": [ - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.total.search.query_total", - "metricAgg": "max", - "label": "Search Total", - "title": "Request Rate", - "description": "Amount of search operations (per shard).", - "units": "", - "format": "0,0.[00]", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - }, - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.primaries.indexing.index_total", - "metricAgg": "max", - "label": "Index Total", - "title": "Request Rate", - "description": "Amount of indexing operations.", - "units": "", - "format": "0,0.[00]", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - } - ], - "index_time": [ - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.total.search.query_time_in_millis", - "metricAgg": "max", - "label": "Search", - "title": "Request Time", - "description": "Amount of time spent performing search operations (per shard).", - "units": "ms", - "format": "0,0.[00]", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - }, - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.total.indexing.index_time_in_millis", - "metricAgg": "max", - "label": "Indexing", - "title": "Request Time", - "description": "Amount of time spent performing index operations on primary and replica shards.", - "units": "ms", - "format": "0,0.[00]", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - }, - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.primaries.indexing.index_time_in_millis", - "metricAgg": "max", - "label": "Indexing (Primaries)", - "title": "Request Time", - "description": "Amount of time spent performing index operations on primary shards only.", - "units": "ms", - "format": "0,0.[00]", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - } - ], - "index_throttling": [ - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.total.indexing.throttle_time_in_millis", - "metricAgg": "max", - "label": "Indexing", - "title": "Throttle Time", - "description": "Amount of time spent throttling index operations on primary and replica shards.", - "units": "ms", - "format": "0,0.[00]", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - }, - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.primaries.indexing.throttle_time_in_millis", - "metricAgg": "max", - "label": "Indexing (Primaries)", - "title": "Throttle Time", - "description": "Amount of time spent throttling index operations on primary shards.", - "units": "ms", - "format": "0,0.[00]", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - } - ], - "index_refresh": [ - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.total.refresh.total_time_in_millis", - "metricAgg": "max", - "label": "Total", - "title": "Refresh Time", - "description": "Amount of time spent to perform refresh operations on primary and replica shards.", - "units": "ms", - "format": "0,0.[00]", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - }, - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.primaries.refresh.total_time_in_millis", - "metricAgg": "max", - "label": "Primaries", - "title": "Refresh Time", - "description": "Amount of time spent to perform refresh operations on primary shards.", - "units": "ms", - "format": "0,0.[00]", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - } - ], - "index_disk": [ - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.total.store.size_in_bytes", - "metricAgg": "max", - "label": "Store", - "title": "Disk", - "description": "Size of primary and replica shards on disk.", - "units": "B", - "format": "0,0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ - [ - 1507235520000, - 9202023 - ], - [ - 1507235530000, - 9202023 - ], - [ - 1507235540000, - 9202023 - ], - [ - 1507235550000, - 9202023 - ], - [ - 1507235560000, - 9202023 - ], - [ - 1507235570000, - 9202023 - ], - [ - 1507235580000, - 9202023 - ], - [ - 1507235590000, - 9202023 - ], - [ - 1507235600000, - 9202023 - ], - [ - 1507235610000, - 9202023 - ], - [ - 1507235620000, - 9202023 - ], - [ - 1507235630000, - 9202023 - ], - [ - 1507235640000, - 9202023 - ], - [ - 1507235650000, - 9202023 - ], - [ - 1507235660000, - 9202023 - ], - [ - 1507235670000, - 9202023 - ], - [ - 1507235680000, - 9202023 - ], - [ - 1507235690000, - 9202023 - ], - [ - 1507235700000, - 9202023 - ] - ] - }, - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.primaries.store.size_in_bytes", - "metricAgg": "max", - "label": "Store (Primaries)", - "title": "Disk", - "description": "Size of primary shards on disk.", - "units": "B", - "format": "0,0.0 b", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ - [ - 1507235520000, - 4601000 - ], - [ - 1507235530000, - 4601000 - ], - [ - 1507235540000, - 4601000 - ], - [ - 1507235550000, - 4601000 - ], - [ - 1507235560000, - 4601000 - ], - [ - 1507235570000, - 4601000 - ], - [ - 1507235580000, - 4601000 - ], - [ - 1507235590000, - 4601000 - ], - [ - 1507235600000, - 4601000 - ], - [ - 1507235610000, - 4601000 - ], - [ - 1507235620000, - 4601000 - ], - [ - 1507235630000, - 4601000 - ], - [ - 1507235640000, - 4601000 - ], - [ - 1507235650000, - 4601000 - ], - [ - 1507235660000, - 4601000 - ], - [ - 1507235670000, - 4601000 - ], - [ - 1507235680000, - 4601000 - ], - [ - 1507235690000, - 4601000 - ], - [ - 1507235700000, - 4601000 - ] - ] - }, - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.total.merges.total_size_in_bytes", - "metricAgg": "max", - "label": "Merges", - "title": "Disk", - "description": "Size of merges on primary and replica shards.", - "units": "B", - "format": "0,0.0 b", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - }, - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.primaries.merges.total_size_in_bytes", - "metricAgg": "max", - "label": "Merges (Primaries)", - "title": "Disk", - "description": "Size of merges on primary shards.", - "units": "B", - "format": "0,0.0 b", - "hasCalculation": false, - "isDerivative": true - }, - "data": [ - [ - 1507235520000, - null - ], - [ - 1507235530000, - 0 - ], - [ - 1507235540000, - 0 - ], - [ - 1507235550000, - 0 - ], - [ - 1507235560000, - 0 - ], - [ - 1507235570000, - 0 - ], - [ - 1507235580000, - 0 - ], - [ - 1507235590000, - 0 - ], - [ - 1507235600000, - 0 - ], - [ - 1507235610000, - 0 - ], - [ - 1507235620000, - 0 - ], - [ - 1507235630000, - 0 - ], - [ - 1507235640000, - 0 - ], - [ - 1507235650000, - 0 - ], - [ - 1507235660000, - 0 - ], - [ - 1507235670000, - 0 - ], - [ - 1507235680000, - 0 - ], - [ - 1507235690000, - 0 - ], - [ - 1507235700000, - 0 - ] - ] - } - ], - "index_segment_count": [ - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.total.segments.count", - "metricAgg": "max", - "label": "Total", - "title": "Segment Count", - "description": "Number of segments for primary and replica shards.", - "units": "", - "format": "0,0.[00]", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ - [ - 1507235520000, - 60 - ], - [ - 1507235530000, - 60 - ], - [ - 1507235540000, - 60 - ], - [ - 1507235550000, - 60 - ], - [ - 1507235560000, - 60 - ], - [ - 1507235570000, - 60 - ], - [ - 1507235580000, - 60 - ], - [ - 1507235590000, - 60 - ], - [ - 1507235600000, - 60 - ], - [ - 1507235610000, - 60 - ], - [ - 1507235620000, - 60 - ], - [ - 1507235630000, - 60 - ], - [ - 1507235640000, - 60 - ], - [ - 1507235650000, - 60 - ], - [ - 1507235660000, - 60 - ], - [ - 1507235670000, - 60 - ], - [ - 1507235680000, - 60 - ], - [ - 1507235690000, - 60 - ], - [ - 1507235700000, - 60 - ] - ] - }, - { - "bucket_size": "10 seconds", - "timeRange": { - "min": 1507235508000, - "max": 1507235712000 - }, - "metric": { - "app": "elasticsearch", - "field": "index_stats.primaries.segments.count", - "metricAgg": "max", - "label": "Primaries", - "title": "Segment Count", - "description": "Number of segments for primary shards.", - "units": "", - "format": "0,0.[00]", - "hasCalculation": false, - "isDerivative": false - }, - "data": [ - [ - 1507235520000, - 30 - ], - [ - 1507235530000, - 30 - ], - [ - 1507235540000, - 30 - ], - [ - 1507235550000, - 30 - ], - [ - 1507235560000, - 30 - ], - [ - 1507235570000, - 30 - ], - [ - 1507235580000, - 30 - ], - [ - 1507235590000, - 30 - ], - [ - 1507235600000, - 30 - ], - [ - 1507235610000, - 30 - ], - [ - 1507235620000, - 30 - ], - [ - 1507235630000, - 30 - ], - [ - 1507235640000, - 30 - ], - [ - 1507235650000, - 30 - ], - [ - 1507235660000, - 30 - ], - [ - 1507235670000, - 30 - ], - [ - 1507235680000, - 30 - ], - [ - 1507235690000, - 30 - ], - [ - 1507235700000, - 30 - ] - ] - } - ] + "index_1": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.total.segments.memory_in_bytes", + "metricAgg": "max", + "label": "Lucene Total", + "title": "Index Memory - Lucene 1", + "description": "Total heap memory used by Lucene for current index. This is the sum of other fields for primary and replica shards.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 2378656], + [1507235530000, 2378656], + [1507235540000, 2378656], + [1507235550000, 2378656], + [1507235560000, 2378656], + [1507235570000, 2378656], + [1507235580000, 2378656], + [1507235590000, 2378656], + [1507235600000, 2378656], + [1507235610000, 2378656], + [1507235620000, 2378656], + [1507235630000, 2378656], + [1507235640000, 2378656], + [1507235650000, 2378656], + [1507235660000, 2378656], + [1507235670000, 2378656], + [1507235680000, 2378656], + [1507235690000, 2378656], + [1507235700000, 2378656] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.total.segments.stored_fields_memory_in_bytes", + "metricAgg": "max", + "label": "Stored Fields", + "title": "Index Memory", + "description": "Heap memory used by Stored Fields (e.g., _source). This is a part of Lucene Total.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 19024], + [1507235530000, 19024], + [1507235540000, 19024], + [1507235550000, 19024], + [1507235560000, 19024], + [1507235570000, 19024], + [1507235580000, 19024], + [1507235590000, 19024], + [1507235600000, 19024], + [1507235610000, 19024], + [1507235620000, 19024], + [1507235630000, 19024], + [1507235640000, 19024], + [1507235650000, 19024], + [1507235660000, 19024], + [1507235670000, 19024], + [1507235680000, 19024], + [1507235690000, 19024], + [1507235700000, 19024] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.total.segments.doc_values_memory_in_bytes", + "metricAgg": "max", + "label": "Doc Values", + "title": "Index Memory", + "description": "Heap memory used by Doc Values. This is a part of Lucene Total.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 232336], + [1507235530000, 232336], + [1507235540000, 232336], + [1507235550000, 232336], + [1507235560000, 232336], + [1507235570000, 232336], + [1507235580000, 232336], + [1507235590000, 232336], + [1507235600000, 232336], + [1507235610000, 232336], + [1507235620000, 232336], + [1507235630000, 232336], + [1507235640000, 232336], + [1507235650000, 232336], + [1507235660000, 232336], + [1507235670000, 232336], + [1507235680000, 232336], + [1507235690000, 232336], + [1507235700000, 232336] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.total.segments.norms_memory_in_bytes", + "metricAgg": "max", + "label": "Norms", + "title": "Index Memory", + "description": "Heap memory used by Norms (normalization factors for query-time, text scoring). This is a part of Lucene Total.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 233472], + [1507235530000, 233472], + [1507235540000, 233472], + [1507235550000, 233472], + [1507235560000, 233472], + [1507235570000, 233472], + [1507235580000, 233472], + [1507235590000, 233472], + [1507235600000, 233472], + [1507235610000, 233472], + [1507235620000, 233472], + [1507235630000, 233472], + [1507235640000, 233472], + [1507235650000, 233472], + [1507235660000, 233472], + [1507235670000, 233472], + [1507235680000, 233472], + [1507235690000, 233472], + [1507235700000, 233472] + ] + }], + "index_2": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.total.segments.memory_in_bytes", + "metricAgg": "max", + "label": "Lucene Total", + "title": "Index Memory - Lucene 2", + "description": "Total heap memory used by Lucene for current index. This is the sum of other fields for primary and replica shards.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 2378656], + [1507235530000, 2378656], + [1507235540000, 2378656], + [1507235550000, 2378656], + [1507235560000, 2378656], + [1507235570000, 2378656], + [1507235580000, 2378656], + [1507235590000, 2378656], + [1507235600000, 2378656], + [1507235610000, 2378656], + [1507235620000, 2378656], + [1507235630000, 2378656], + [1507235640000, 2378656], + [1507235650000, 2378656], + [1507235660000, 2378656], + [1507235670000, 2378656], + [1507235680000, 2378656], + [1507235690000, 2378656], + [1507235700000, 2378656] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.total.segments.terms_memory_in_bytes", + "metricAgg": "max", + "label": "Terms", + "title": "Index Memory", + "description": "Heap memory used by Terms (e.g., text). This is a part of Lucene Total.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 1889180], + [1507235530000, 1889180], + [1507235540000, 1889180], + [1507235550000, 1889180], + [1507235560000, 1889180], + [1507235570000, 1889180], + [1507235580000, 1889180], + [1507235590000, 1889180], + [1507235600000, 1889180], + [1507235610000, 1889180], + [1507235620000, 1889180], + [1507235630000, 1889180], + [1507235640000, 1889180], + [1507235650000, 1889180], + [1507235660000, 1889180], + [1507235670000, 1889180], + [1507235680000, 1889180], + [1507235690000, 1889180], + [1507235700000, 1889180] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.total.segments.points_memory_in_bytes", + "metricAgg": "max", + "label": "Points", + "title": "Index Memory", + "description": "Heap memory used by Points (e.g., numbers, IPs, and geo data). This is a part of Lucene Total.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 4644], + [1507235530000, 4644], + [1507235540000, 4644], + [1507235550000, 4644], + [1507235560000, 4644], + [1507235570000, 4644], + [1507235580000, 4644], + [1507235590000, 4644], + [1507235600000, 4644], + [1507235610000, 4644], + [1507235620000, 4644], + [1507235630000, 4644], + [1507235640000, 4644], + [1507235650000, 4644], + [1507235660000, 4644], + [1507235670000, 4644], + [1507235680000, 4644], + [1507235690000, 4644], + [1507235700000, 4644] + ] + }], + "index_3": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.total.segments.memory_in_bytes", + "metricAgg": "max", + "label": "Lucene Total", + "title": "Index Memory - Lucene 3", + "description": "Total heap memory used by Lucene for current index. This is the sum of other fields for primary and replica shards.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 2378656], + [1507235530000, 2378656], + [1507235540000, 2378656], + [1507235550000, 2378656], + [1507235560000, 2378656], + [1507235570000, 2378656], + [1507235580000, 2378656], + [1507235590000, 2378656], + [1507235600000, 2378656], + [1507235610000, 2378656], + [1507235620000, 2378656], + [1507235630000, 2378656], + [1507235640000, 2378656], + [1507235650000, 2378656], + [1507235660000, 2378656], + [1507235670000, 2378656], + [1507235680000, 2378656], + [1507235690000, 2378656], + [1507235700000, 2378656] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.total.segments.fixed_bit_set_memory_in_bytes", + "metricAgg": "max", + "label": "Fixed Bitsets", + "title": "Index Memory", + "description": "Heap memory used by Fixed Bit Sets (e.g., deeply nested documents). This is a part of Lucene Total.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 0], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.total.segments.term_vectors_memory_in_bytes", + "metricAgg": "max", + "label": "Term Vectors", + "title": "Index Memory", + "description": "Heap memory used by Term Vectors. This is a part of Lucene Total.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 0], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.total.segments.version_map_memory_in_bytes", + "metricAgg": "max", + "label": "Version Map", + "title": "Index Memory", + "description": "Heap memory used by Versioning (e.g., updates and deletes). This is NOT a part of Lucene Total.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 0], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }], + "index_4": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.total.query_cache.memory_size_in_bytes", + "metricAgg": "max", + "label": "Query Cache", + "title": "Index Memory - Elasticsearch", + "description": "Heap memory used by Query Cache (e.g., cached filters). This is for the same shards, but not a part of Lucene Total.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 0], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.total.request_cache.memory_size_in_bytes", + "metricAgg": "max", + "label": "Request Cache", + "title": "Index Memory", + "description": "Heap memory used by Request Cache (e.g., instant aggregations). This is for the same shards, but not a part of Lucene Total.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 0], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.total.fielddata.memory_size_in_bytes", + "metricAgg": "max", + "label": "Fielddata", + "title": "Index Memory", + "description": "Heap memory used by Fielddata (e.g., global ordinals or explicitly enabled fielddata on text fields). This is for the same shards, but not a part of Lucene Total.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 0], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.total.segments.index_writer_memory_in_bytes", + "metricAgg": "max", + "label": "Index Writer", + "title": "Index Memory", + "description": "Heap memory used by the Index Writer. This is NOT a part of Lucene Total.", + "units": "B", + "format": "0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 0], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }], + "index_total": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.total.search.query_total", + "metricAgg": "max", + "label": "Search Total", + "title": "Request Rate", + "description": "Amount of search operations (per shard).", + "units": "", + "format": "0,0.[00]", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.primaries.indexing.index_total", + "metricAgg": "max", + "label": "Index Total", + "title": "Request Rate", + "description": "Amount of indexing operations.", + "units": "", + "format": "0,0.[00]", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }], + "index_time": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.total.search.query_time_in_millis", + "metricAgg": "max", + "label": "Search", + "title": "Request Time", + "description": "Amount of time spent performing search operations (per shard).", + "units": "ms", + "format": "0,0.[00]", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.total.indexing.index_time_in_millis", + "metricAgg": "max", + "label": "Indexing", + "title": "Request Time", + "description": "Amount of time spent performing index operations on primary and replica shards.", + "units": "ms", + "format": "0,0.[00]", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.primaries.indexing.index_time_in_millis", + "metricAgg": "max", + "label": "Indexing (Primaries)", + "title": "Request Time", + "description": "Amount of time spent performing index operations on primary shards only.", + "units": "ms", + "format": "0,0.[00]", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }], + "index_throttling": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.total.indexing.throttle_time_in_millis", + "metricAgg": "max", + "label": "Indexing", + "title": "Throttle Time", + "description": "Amount of time spent throttling index operations on primary and replica shards.", + "units": "ms", + "format": "0,0.[00]", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.primaries.indexing.throttle_time_in_millis", + "metricAgg": "max", + "label": "Indexing (Primaries)", + "title": "Throttle Time", + "description": "Amount of time spent throttling index operations on primary shards.", + "units": "ms", + "format": "0,0.[00]", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }], + "index_refresh": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.total.refresh.total_time_in_millis", + "metricAgg": "max", + "label": "Total", + "title": "Refresh Time", + "description": "Amount of time spent to perform refresh operations on primary and replica shards.", + "units": "ms", + "format": "0,0.[00]", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.primaries.refresh.total_time_in_millis", + "metricAgg": "max", + "label": "Primaries", + "title": "Refresh Time", + "description": "Amount of time spent to perform refresh operations on primary shards.", + "units": "ms", + "format": "0,0.[00]", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }], + "index_disk": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.total.store.size_in_bytes", + "metricAgg": "max", + "label": "Store", + "title": "Disk", + "description": "Size of primary and replica shards on disk.", + "units": "B", + "format": "0,0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 9202023], + [1507235530000, 9202023], + [1507235540000, 9202023], + [1507235550000, 9202023], + [1507235560000, 9202023], + [1507235570000, 9202023], + [1507235580000, 9202023], + [1507235590000, 9202023], + [1507235600000, 9202023], + [1507235610000, 9202023], + [1507235620000, 9202023], + [1507235630000, 9202023], + [1507235640000, 9202023], + [1507235650000, 9202023], + [1507235660000, 9202023], + [1507235670000, 9202023], + [1507235680000, 9202023], + [1507235690000, 9202023], + [1507235700000, 9202023] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.primaries.store.size_in_bytes", + "metricAgg": "max", + "label": "Store (Primaries)", + "title": "Disk", + "description": "Size of primary shards on disk.", + "units": "B", + "format": "0,0.0 b", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 4601000], + [1507235530000, 4601000], + [1507235540000, 4601000], + [1507235550000, 4601000], + [1507235560000, 4601000], + [1507235570000, 4601000], + [1507235580000, 4601000], + [1507235590000, 4601000], + [1507235600000, 4601000], + [1507235610000, 4601000], + [1507235620000, 4601000], + [1507235630000, 4601000], + [1507235640000, 4601000], + [1507235650000, 4601000], + [1507235660000, 4601000], + [1507235670000, 4601000], + [1507235680000, 4601000], + [1507235690000, 4601000], + [1507235700000, 4601000] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.total.merges.total_size_in_bytes", + "metricAgg": "max", + "label": "Merges", + "title": "Disk", + "description": "Size of merges on primary and replica shards.", + "units": "B", + "format": "0,0.0 b", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.primaries.merges.total_size_in_bytes", + "metricAgg": "max", + "label": "Merges (Primaries)", + "title": "Disk", + "description": "Size of merges on primary shards.", + "units": "B", + "format": "0,0.0 b", + "hasCalculation": false, + "isDerivative": true + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }], + "index_segment_count": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.total.segments.count", + "metricAgg": "max", + "label": "Total", + "title": "Segment Count", + "description": "Number of segments for primary and replica shards.", + "units": "", + "format": "0,0.[00]", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 60], + [1507235530000, 60], + [1507235540000, 60], + [1507235550000, 60], + [1507235560000, 60], + [1507235570000, 60], + [1507235580000, 60], + [1507235590000, 60], + [1507235600000, 60], + [1507235610000, 60], + [1507235620000, 60], + [1507235630000, 60], + [1507235640000, 60], + [1507235650000, 60], + [1507235660000, 60], + [1507235670000, 60], + [1507235680000, 60], + [1507235690000, 60], + [1507235700000, 60] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.primaries.segments.count", + "metricAgg": "max", + "label": "Primaries", + "title": "Segment Count", + "description": "Number of segments for primary shards.", + "units": "", + "format": "0,0.[00]", + "hasCalculation": false, + "isDerivative": false + }, + "data": [ + [1507235520000, 30], + [1507235530000, 30], + [1507235540000, 30], + [1507235550000, 30], + [1507235560000, 30], + [1507235570000, 30], + [1507235580000, 30], + [1507235590000, 30], + [1507235600000, 30], + [1507235610000, 30], + [1507235620000, 30], + [1507235630000, 30], + [1507235640000, 30], + [1507235650000, 30], + [1507235660000, 30], + [1507235670000, 30], + [1507235680000, 30], + [1507235690000, 30], + [1507235700000, 30] + ] + }], + "index_latency": [{ + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.primaries.indexing.index_total", + "metricAgg": "sum", + "label": "Indexing Latency", + "title": "Latency", + "description": "Average latency for indexing documents, which is time it takes to index documents divided by number that were indexed. This only considers primary shards.", + "units": "ms", + "format": "0,0.[00]", + "hasCalculation": true, + "isDerivative": false + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }, { + "bucket_size": "10 seconds", + "timeRange": { + "min": 1507235508000, + "max": 1507235712000 + }, + "metric": { + "app": "elasticsearch", + "field": "index_stats.total.search.query_total", + "metricAgg": "sum", + "label": "Search Latency", + "description": "Average latency for searching, which is time it takes to execute searches divided by number of searches submitted. This considers primary and replica shards.", + "units": "ms", + "format": "0,0.[00]", + "hasCalculation": true, + "isDerivative": false + }, + "data": [ + [1507235520000, null], + [1507235530000, 0], + [1507235540000, 0], + [1507235550000, 0], + [1507235560000, 0], + [1507235570000, 0], + [1507235580000, 0], + [1507235590000, 0], + [1507235600000, 0], + [1507235610000, 0], + [1507235620000, 0], + [1507235630000, 0], + [1507235640000, 0], + [1507235650000, 0], + [1507235660000, 0], + [1507235670000, 0], + [1507235680000, 0], + [1507235690000, 0], + [1507235700000, 0] + ] + }] } }