Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ https://github.com/elastic/beats/compare/v8.2.0\...main[Check the HEAD diff]
- Fix type mapping of client.as.number in okta module. {pull}31676[31676]
- Fix last write pagination commit checkpoint on `aws-s3` input for s3 direct polling when using the same bucket and different list prefixes. {pull}31776[31776]
- If a file is ignored by `filestream` because of ignore_older settings, when it is updated, only the new lines are shipped to the output. {issue}31924[31924] {pull}31972[31972]
- Fix handling and mapping of syslog priority, facility and severity values in Cisco module. {pull}32025[32025]

*Heartbeat*
- Fix unintentional use of no-op logger. {pull}31543[31543]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
"log.file.path": "not-ip.log",
"log.level": "notification",
"log.offset": 0,
"log.syslog.facility.code": 20,
"log.syslog.priority": 165,
"log.syslog.severity.code": 5,
"network.iana_number": 6,
"network.transport": "tcp",
"observer.egress.interface.name": "OUTSIDE",
Expand All @@ -46,7 +49,6 @@
"source.address": "WHAT-IS-THIS-A-HOSTNAME-192.0.2.244",
"source.domain": "WHAT-IS-THIS-A-HOSTNAME-192.0.2.244",
"source.port": 27218,
"syslog.facility": 165,
"tags": [
"cisco-asa",
"forwarded"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4756,6 +4756,9 @@
"log.file.path": "sample.log",
"log.level": "warning",
"log.offset": 13909,
"log.syslog.facility.code": 1,
"log.syslog.priority": 13,
"log.syslog.severity.code": 5,
"network.protocol": "tcp",
"observer.egress.interface.name": "Inside",
"observer.ingress.interface.name": "outside",
Expand All @@ -4770,7 +4773,6 @@
"source.address": "54.239.28.85",
"source.ip": "54.239.28.85",
"source.port": 443,
"syslog.facility": 13,
"tags": [
"cisco-asa",
"forwarded"
Expand All @@ -4797,6 +4799,9 @@
"log.file.path": "sample.log",
"log.level": "warning",
"log.offset": 14071,
"log.syslog.facility.code": 1,
"log.syslog.priority": 13,
"log.syslog.severity.code": 5,
"network.protocol": "tcp",
"observer.egress.interface.name": "Inside",
"observer.ingress.interface.name": "outside",
Expand All @@ -4811,7 +4816,6 @@
"source.address": "54.239.28.85",
"source.ip": "54.239.28.85",
"source.port": 443,
"syslog.facility": 13,
"tags": [
"cisco-asa",
"forwarded"
Expand Down
Binary file modified x-pack/filebeat/module/cisco/ftd/test/firepower-management.log
Binary file not shown.
Loading