Skip to content

Commit

Permalink
system/auth: remove redundant regular expression quantifier (#5320)
Browse files Browse the repository at this point in the history
  • Loading branch information
efd6 authored Feb 20, 2023
1 parent a4e7fa9 commit 02df9e2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions packages/system/changelog.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/system/manifest.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 02df9e2

Please sign in to comment.