From d98755cb09e434fe96c2edd1bb8e75a66e62e90d Mon Sep 17 00:00:00 2001 From: Dan Kortschak Date: Mon, 20 Feb 2023 08:19:29 +1030 Subject: [PATCH] system/auth: remove redundant regular expression quantifier --- packages/system/changelog.yml | 5 +++++ .../auth/elasticsearch/ingest_pipeline/default.yml | 2 +- packages/system/manifest.yml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/packages/system/changelog.yml b/packages/system/changelog.yml index 517c71ff596..23447c46632 100644 --- a/packages/system/changelog.yml +++ b/packages/system/changelog.yml @@ -1,4 +1,9 @@ # newer versions go on top +- version: "1.24.2" + changes: + - description: Remove redundant regular expression quantifier. + type: bugfix + link: https://github.com/elastic/integrations/pull/5320 - version: "1.24.1" changes: - description: Added filters on dataset for system metrics dashboards diff --git a/packages/system/data_stream/auth/elasticsearch/ingest_pipeline/default.yml b/packages/system/data_stream/auth/elasticsearch/ingest_pipeline/default.yml index 6db3a4fe7df..2a25c987e5d 100644 --- a/packages/system/data_stream/auth/elasticsearch/ingest_pipeline/default.yml +++ b/packages/system/data_stream/auth/elasticsearch/ingest_pipeline/default.yml @@ -14,7 +14,7 @@ processors: GREEDYMULTILINE: '(.|\n)*' TIMESTAMP: (?:%{TIMESTAMP_ISO8601}|%{SYSLOGTIMESTAMP}) patterns: - - '^%{TIMESTAMP:system.auth.timestamp} %{SYSLOGHOST:host.hostname}? %{DATA:process.name}(?:\[%{POSINT:process.pid:long}\])?:%{SPACE}+%{GREEDYMULTILINE:_temp.message}$' + - '^%{TIMESTAMP:system.auth.timestamp} %{SYSLOGHOST:host.hostname}? %{DATA:process.name}(?:\[%{POSINT:process.pid:long}\])?:%{SPACE}%{GREEDYMULTILINE:_temp.message}$' - grok: description: Grok specific auth messages. tag: grok-specific-messages diff --git a/packages/system/manifest.yml b/packages/system/manifest.yml index ab31fd62061..b20180a2832 100644 --- a/packages/system/manifest.yml +++ b/packages/system/manifest.yml @@ -1,7 +1,7 @@ format_version: 1.0.0 name: system title: System -version: 1.24.1 +version: 1.24.2 license: basic description: Collect system logs and metrics from your servers with Elastic Agent. type: integration