Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Filebeat] fix event.type have incorrect value in system/syslog #20390

Merged
merged 2 commits into from
Aug 10, 2020
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 @@ -236,6 +236,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Fix mapping exception in the `googlecloud/audit` dataset pipeline. {issue}18465[18465] {pull}20465[20465]
- Fix `cisco` asa and ftd parsing of messages 106102 and 106103. {pull}20469[20469]
- Improve validation checks for Azure configuration {issue}20369[20369] {pull}20389[20389]
- Fix event.kind for system/syslog pipeline {issue}20365[20365] {pull}20390[20390]

*Heartbeat*

Expand Down
2 changes: 1 addition & 1 deletion filebeat/module/system/syslog/ingest/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ processors:
- remove:
field: system.syslog.timestamp
- set:
field: event.type
field: event.kind
value: event
on_failure:
- set:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[
{
"event.dataset": "system.syslog",
"event.kind": "event",
"event.module": "system",
"event.timezone": "-02:00",
"event.type": "event",
"fileset.name": "syslog",
"host.hostname": "a-mac-with-esc-key",
"input.type": "log",
Expand All @@ -18,9 +18,9 @@
},
{
"event.dataset": "system.syslog",
"event.kind": "event",
"event.module": "system",
"event.timezone": "-02:00",
"event.type": "event",
"fileset.name": "syslog",
"host.hostname": "a-mac-with-esc-key",
"input.type": "log",
Expand All @@ -32,9 +32,9 @@
},
{
"event.dataset": "system.syslog",
"event.kind": "event",
"event.module": "system",
"event.timezone": "-02:00",
"event.type": "event",
"fileset.name": "syslog",
"input.type": "log",
"log.offset": 1176,
Expand Down
Loading