Skip to content

Commit

Permalink
[AWS] Update AWS cloud.region parsing (#32763)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaiyan-sheng authored and chrisberkhout committed Jun 1, 2023
1 parent 010b5e0 commit e109b72
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ https://github.com/elastic/beats/compare/v8.2.0\...main[Check the HEAD diff]
- Fix handling of Checkpoint event for R81. {issue}32380[32380] {pull}32458[32458]
- Fix a hang on `apt-get update` stage in packaging. {pull}32580[32580]
- gcp-pubsub input: Restart Pub/Sub client on all errors. {issue}32550[32550] {pull}32712[32712]
- Update `cloud.region` parsing in cloudtrail fileset. {pull}32763[32763]
- Fix file.path field in cloudtrail fileset to use json.digestS3Object. {pull}32759[32759]

*Heartbeat*
Expand Down
8 changes: 4 additions & 4 deletions x-pack/filebeat/module/aws/cloudtrail/ingest/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ processors:
field: "json.eventCategory"
target_field: "aws.cloudtrail.event_category"
ignore_failure: true
- rename:
field: "json.awsRegion"
target_field: "cloud.region"
ignore_failure: true
- set:
field: "cloud.region"
copy_from: "json.awsRegion"
ignore_empty_value: true
- rename:
field: "json.sourceIPAddress"
target_field: "source.address"
Expand Down

0 comments on commit e109b72

Please sign in to comment.