summaryrefslogtreecommitdiffstats
path: root/python.d
diff options
context:
space:
mode:
authorIlya <ilyamaschenko@gmail.com>2017-09-02 17:15:31 +0900
committerIlya <ilyamaschenko@gmail.com>2017-09-02 17:15:31 +0900
commit0448d8f8cd1269ce44d5ba088e37a1bf189bbe41 (patch)
tree9540441c0ca15f2a5e3f584408b9e9c1b7da6ebb /python.d
parent609ebf67567fad3380e9fc7b9d91d4d0778621d3 (diff)
elasticsearch bugfix: "query And fetch Latency" chart added
Diffstat (limited to 'python.d')
-rw-r--r--python.d/elasticsearch.chart.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/python.d/elasticsearch.chart.py b/python.d/elasticsearch.chart.py
index b9976aa8f0..2e0f18c0ff 100644
--- a/python.d/elasticsearch.chart.py
+++ b/python.d/elasticsearch.chart.py
@@ -88,11 +88,11 @@ HEALTH_STATS = [
LATENCY = {
'query_latency':
- {'total': 'query_total',
- 'spent_time': 'query_time_in_millis'},
+ {'total': 'indices_search_query_total',
+ 'spent_time': 'indices_search_query_time_in_millis'},
'fetch_latency':
- {'total': 'fetch_total',
- 'spent_time': 'fetch_time_in_millis'},
+ {'total': 'indices_search_fetch_total',
+ 'spent_time': 'indices_search_fetch_time_in_millis'},
'indexing_latency':
{'total': 'indices_indexing_index_total',
'spent_time': 'indices_indexing_index_time_in_millis'},