Skip to content

Commit 8accc1c

Browse files
Address PR comments
1 parent 9484849 commit 8accc1c

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

packages/azure/changelog.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
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:

packages/azure/data_stream/firewall_logs/elasticsearch/ingest_pipeline/default.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)