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