From 7afc0324559f7ffd24f33fe24c05cf1d54df9625 Mon Sep 17 00:00:00 2001 From: Chris Roberson Date: Thu, 11 Oct 2018 09:46:57 +0100 Subject: [PATCH 1/3] Add additional necessary mappings for apm-server --- .../core/src/main/resources/monitoring-beats.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/x-pack/plugin/core/src/main/resources/monitoring-beats.json b/x-pack/plugin/core/src/main/resources/monitoring-beats.json index d23db9a11a4aa..0b04e961d1f7c 100644 --- a/x-pack/plugin/core/src/main/resources/monitoring-beats.json +++ b/x-pack/plugin/core/src/main/resources/monitoring-beats.json @@ -487,6 +487,13 @@ "type": "long" } } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } } } } @@ -538,6 +545,9 @@ }, "total": { "type": "long" + }, + "toomany": { + "type": "long" } } }, From 00529a209216df382d63b9648e6740e502d555f1 Mon Sep 17 00:00:00 2001 From: Chris Roberson Date: Thu, 11 Oct 2018 11:27:34 +0100 Subject: [PATCH 2/3] Add open handles for beats --- .../src/main/resources/monitoring-beats.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/x-pack/plugin/core/src/main/resources/monitoring-beats.json b/x-pack/plugin/core/src/main/resources/monitoring-beats.json index 0b04e961d1f7c..0d8158a2d250f 100644 --- a/x-pack/plugin/core/src/main/resources/monitoring-beats.json +++ b/x-pack/plugin/core/src/main/resources/monitoring-beats.json @@ -221,6 +221,23 @@ "type": "long" } } + }, + "handles": { + "properties": { + "open": { + "type": "long" + }, + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + } + } } } }, From f3104bbbda0ba2bd3603a8af0963fb5c6d3a492f Mon Sep 17 00:00:00 2001 From: Chris Roberson Date: Thu, 11 Oct 2018 11:36:18 +0100 Subject: [PATCH 3/3] Add mappings missing for es --- .../plugin/core/src/main/resources/monitoring-es.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/x-pack/plugin/core/src/main/resources/monitoring-es.json b/x-pack/plugin/core/src/main/resources/monitoring-es.json index 921e726613f50..31d79f3646be7 100644 --- a/x-pack/plugin/core/src/main/resources/monitoring-es.json +++ b/x-pack/plugin/core/src/main/resources/monitoring-es.json @@ -835,6 +835,16 @@ "type": "long" } } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } } } }