From aa20841e2f0b113e35e308d7625d832beb036694 Mon Sep 17 00:00:00 2001 From: Dario Gieselaar Date: Tue, 25 Feb 2020 21:46:53 +0100 Subject: [PATCH] =?UTF-8?q?[7.x]=20[APM]=20Add=20`xpack.apm.enabled`=20key?= =?UTF-8?q?=20to=20config=20schema=20(#575=E2=80=A6=20(#57679)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes #57418. Co-authored-by: Elastic Machine --- x-pack/plugins/apm/server/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/x-pack/plugins/apm/server/index.ts b/x-pack/plugins/apm/server/index.ts index fb040afa17251..ebd954015c910 100644 --- a/x-pack/plugins/apm/server/index.ts +++ b/x-pack/plugins/apm/server/index.ts @@ -15,6 +15,7 @@ export const config = { ui: true }, schema: schema.object({ + enabled: schema.boolean({ defaultValue: true }), serviceMapEnabled: schema.boolean({ defaultValue: false }), autocreateApmIndexPattern: schema.boolean({ defaultValue: true }), ui: schema.object({