Skip to content

Commit

Permalink
Less allocation.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisberkhout committed Dec 11, 2024
1 parent 49a3dc4 commit af1a09f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ processors:
tag: set_event_kind_alert
field: event.kind
value: alert
if: "![null, ''].contains(ctx.tanium?.threat_response?.alert_id)"
if: ctx.tanium?.threat_response?.alert_id != null && ctx.tanium.threat_response.alert_id != ''
- rename:
tag: rename_json_intel_id
field: json.Intel Id
Expand Down

0 comments on commit af1a09f

Please sign in to comment.