Skip to content

Commit

Permalink
updated santa module to use new nullcheck in set processors (elastic#…
Browse files Browse the repository at this point in the history
  • Loading branch information
P1llus authored Jul 14, 2020
1 parent e16b6bd commit 77d51c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion filebeat/module/santa/log/ingest/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ processors:
field: '@timestamp'
value: '{{ process.start }}'
ignore_failure: true
ignore_empty_value: true
- split:
field: santa.args
separator: ' '
Expand Down Expand Up @@ -69,7 +70,7 @@ processors:
- set:
field: event.action
value: "{{santa.action}}"
if: "ctx?.santa?.action != null"
ignore_empty_value: true
- lowercase:
field: event.action
ignore_missing: true
Expand Down

0 comments on commit 77d51c6

Please sign in to comment.