File tree Expand file tree Collapse file tree
data_stream/firewall_logs/elasticsearch/ingest_pipeline Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11- version : " 1.31.0"
22 changes :
3+ - description : |
4+ Remove `destination.ip` and `destination.port` mapping of `TranslatedIp` and `TranslatedPort`.
5+ type: breaking-change
6+ link: https://github.com/elastic/integrations/pull/16395
37 - description : |
48 Add `destination.ip` to `destination.address` and `source.ip` to `source.address`.
59 Add `TranslatedIp` and `TranslatedPort` to `destination.nat.ip` and `destination.nat.port`.
610 Update event type mappings for AZFWNetworkRule and AZFWApplicationRule categories in firewall_logs data stream.
7- Remove `destination.ip` and `destination.port` mapping of `TranslatedIp` and `TranslatedPort`.
8- type: breaking-change
11+ type: enhancement
912 link: https://github.com/elastic/integrations/pull/16395
1013 - version : " 1.30.0"
1114 changes :
Original file line number Diff line number Diff line change @@ -233,13 +233,13 @@ processors:
233233 field : event.type
234234 tag : append_allowed_into_event_type
235235 value : allowed
236- if : ctx.event?.action != null && ctx.event.action. equalsIgnoreCase(" Allow")
236+ if : ctx.event?.action?. equalsIgnoreCase(' Allow') == true
237237 allow_duplicates : false
238238 - append :
239239 field : event.type
240240 tag : append_denied_into_event_type
241241 value : denied
242- if : ctx.event?.action != null && ctx.event.action. equalsIgnoreCase(" Deny")
242+ if : ctx.event?.action?. equalsIgnoreCase(' Deny') == true
243243 allow_duplicates : false
244244 - grok :
245245 field : source.address
You can’t perform that action at this time.
0 commit comments