From 43c23374a32df90e541066e56a3806dbe483066f Mon Sep 17 00:00:00 2001 From: Antoine Cotten Date: Thu, 12 Nov 2020 15:39:40 +0100 Subject: [PATCH] logstash: Explicitly set ecs_compatibility to "disabled" Since v7.10, Logstash prints the following warning message when this setting is not defined: [deprecation.logstash.outputs.elasticsearch] Relying on default value of `pipeline.ecs_compatibility`, which may change in a future major release of Logstash. To avoid unexpected changes when upgrading Logstash, please explicitly declare your desired ECS Compatibility mode. Ref: https://www.elastic.co/guide/en/logstash/7.10/plugins-outputs-elasticsearch.html#plugins-outputs-elasticsearch-ecs_compatibility --- logstash/pipeline/logstash.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/logstash/pipeline/logstash.conf b/logstash/pipeline/logstash.conf index 40ca757..7d5918b 100644 --- a/logstash/pipeline/logstash.conf +++ b/logstash/pipeline/logstash.conf @@ -15,5 +15,6 @@ output { hosts => "elasticsearch:9200" user => "elastic" password => "changeme" + ecs_compatibility => disabled } }