Skip to content

Commit

Permalink
fix(cisco_ios): escape hyphen inside regex char list (#9578)
Browse files Browse the repository at this point in the history
  • Loading branch information
pkoutsovasilis authored Apr 12, 2024
1 parent 9e874ff commit 2060587
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions packages/cisco_ios/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.26.5"
changes:
- description: Fix ingest pipeline warnings
type: bugfix
link: https://github.com/elastic/integrations/pulls/9566
- version: "1.26.4"
changes:
- description: Fix hostname parsing for names that contain '_' underscore characters.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ processors:
CISCO_PRIORITY_MSGCOUNT: '<%{NONNEGINT:log.syslog.priority:long}>(?:%{NONNEGINT:cisco.ios.message_count})?(?:: )?'
CISCO_TIMESTAMP: '[*]?%{CISCOTIMESTAMP:_temp_.cisco_timestamp}(?: %{CISCO_TZ:_temp_.tz})?'
CISCO_UPTIME: '[0-9a-zA-Z]+'
CISCO_HOSTNAME: '[a-zA-Z][0-9a-zA-Z-_]{0,61}[0-9a-zA-Z]?'
CISCO_HOSTNAME: '[a-zA-Z][0-9a-zA-Z_-]{0,61}[0-9a-zA-Z]?'
CISCO_TZ: '[a-zA-Z]{1,4}'
- grok:
field: _temp_.message
Expand Down
2 changes: 1 addition & 1 deletion packages/cisco_ios/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: "3.0.3"
name: cisco_ios
title: Cisco IOS
version: "1.26.4"
version: "1.26.5"
description: Collect logs from Cisco IOS with Elastic Agent.
type: integration
categories:
Expand Down

0 comments on commit 2060587

Please sign in to comment.