From 370abd3ed87e2428210f9df875105722f8f6006b Mon Sep 17 00:00:00 2001 From: Simon Koetting Date: Mon, 28 Dec 2020 12:18:23 +0100 Subject: [PATCH 1/2] Changed ilmDefaultPattern to start with 0 insted of 1 --- libbeat/idxmgmt/ilm/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libbeat/idxmgmt/ilm/config.go b/libbeat/idxmgmt/ilm/config.go index de78cdbce551..9987251b01c8 100644 --- a/libbeat/idxmgmt/ilm/config.go +++ b/libbeat/idxmgmt/ilm/config.go @@ -58,7 +58,7 @@ const ( ModeDisabled ) -const ilmDefaultPattern = "{now/d}-000001" +const ilmDefaultPattern = "{now/d}-000000" // DefaultPolicy defines the default policy to be used if no custom policy is // configured. From f654d404f31e96f472fb97db6c77cc621e462e51 Mon Sep 17 00:00:00 2001 From: Simon Koetting Date: Mon, 28 Dec 2020 12:26:41 +0100 Subject: [PATCH 2/2] changelog --- CHANGELOG.next.asciidoc | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index 4aa1acb014c9..9a7ab84ef73d 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -33,6 +33,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - API address is a required setting in `add_cloudfoundry_metadata`. {pull}21759[21759] - Update to ECS 1.7.0. {pull}22571[22571] - Add support for SCRAM-SHA-512 and SCRAM-SHA-256 in Kafka output. {pull}12867[12867] +- Changed Changed ilmDefaultPattern to start with 0 insted of 1 {issue}20648[20648] {pull}23295[23295] *Auditbeat*