diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index 41709892e44..d9e51467d70 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -232,6 +232,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - Fix millisecond timestamp normalization issues in CrowdStrike module {issue}20035[20035], {pull}20138[20138] - Fix support for message code 106100 in Cisco ASA and FTD. {issue}19350[19350] {pull}20245[20245] - Fix `fortinet` setting `event.timezone` to the system one when no `tz` field present {pull}20273[20273] +- Fix `okta` geoip lookup in pipeline for `destination.ip` {pull}20454[20454] *Heartbeat* diff --git a/x-pack/filebeat/module/okta/system/ingest/pipeline.yml b/x-pack/filebeat/module/okta/system/ingest/pipeline.yml index e3d92540d5f..0da85185ca2 100644 --- a/x-pack/filebeat/module/okta/system/ingest/pipeline.yml +++ b/x-pack/filebeat/module/okta/system/ingest/pipeline.yml @@ -3,7 +3,7 @@ description: Pipeline for Okta system logs. processors: - set: field: event.ingested - value: '{{_ingest.timestamp}}' + value: "{{_ingest.timestamp}}" - user_agent: field: user_agent.original ignore_missing: true @@ -13,7 +13,7 @@ processors: ignore_missing: true - geoip: field: destination.ip - target_field: source.geo + target_field: destination.geo ignore_missing: true - geoip: database_file: GeoLite2-ASN.mmdb @@ -51,4 +51,4 @@ processors: on_failure: - set: field: error.message - value: '{{ _ingest.on_failure_message }}' + value: "{{ _ingest.on_failure_message }}"