From ebc37feaeb2db1f44ab588db253cf1c27c607edd Mon Sep 17 00:00:00 2001 From: Andrew Cholakian Date: Tue, 18 Jul 2017 11:28:01 -0500 Subject: [PATCH] [Logstash] new pipeline viewer schema (elastic/x-pack-elasticsearch#1845) New metric types for logstash pipeline viewer. Original commit: elastic/x-pack-elasticsearch@8e44b1fa5a74ad69d6768470df68f66bf868e161 --- .../main/resources/monitoring-logstash.json | 34 ++++++++++++------- 1 file changed, 22 insertions(+), 12 deletions(-) diff --git a/plugin/src/main/resources/monitoring-logstash.json b/plugin/src/main/resources/monitoring-logstash.json index 9458e07b157..782dd9fc7d1 100644 --- a/plugin/src/main/resources/monitoring-logstash.json +++ b/plugin/src/main/resources/monitoring-logstash.json @@ -265,6 +265,9 @@ }, "duration_in_millis":{ "type": "long" + }, + "queue_push_duration_in_millis": { + "type": "long" } } }, @@ -278,13 +281,18 @@ } } }, - "components": { + "vertices": { "type": "nested", "properties": { "id": { "type": "keyword" }, - "long_stat": { + "pipeline_ephemeral_id": { "type": "keyword" }, + "events_in": { "type": "long" }, + "events_out": { "type": "long" }, + "duration_in_millis": { "type": "long" }, + "queue_push_duration_in_millis": { "type": "long" }, + "counters": { "type": "nested", "properties": { "name": { @@ -292,13 +300,10 @@ }, "value": { "type": "long" - }, - "metric_type": { - "type": "keyword" } } }, - "double_stat": { + "double_gauges": { "type": "nested", "properties": { "name": { @@ -306,13 +311,10 @@ }, "value": { "type": "double" - }, - "metric_type": { - "type": "keyword" } } }, - "string_stat": { + "text_gauges": { "type": "nested", "properties": { "name": { @@ -320,9 +322,17 @@ }, "value": { "type": "keyword" - }, - "metric_type": { + } + } + }, + "boolean_gauges": { + "type": "nested", + "properties": { + "name": { "type": "keyword" + }, + "value": { + "type": "boolean" } } }