-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Decode_cef Processor needs to set observer.ip as array #35140
Labels
Comments
Pinging @elastic/security-external-integrations (Team:Security-External Integrations) |
6 tasks
andrewkroh
added a commit
to andrewkroh/beats
that referenced
this issue
Apr 20, 2023
Fix the ECS output format by making `observer.ip` into an array of strings instead of string. Fixes elastic#35140
andrewkroh
added a commit
that referenced
this issue
Apr 20, 2023
Fix the ECS output format by making `observer.ip` into an array of strings instead of string. Fixes #35140
andrewkroh
added a commit
that referenced
this issue
Apr 21, 2023
andrewkroh
added a commit
that referenced
this issue
Apr 21, 2023
chrisberkhout
pushed a commit
that referenced
this issue
Jun 1, 2023
Fix the ECS output format by making `observer.ip` into an array of strings instead of string. Fixes #35140
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
According to the ECS schema, observer.ip needs to be an array: https://www.elastic.co/guide/en/ecs/8.7/ecs-observer.html#field-observer-ip
However the decode_cef processor sets this as a string, and it makes integrations that uses the processor fail system tests once the format_version is bumped to a newer version.
Decode_cef Processor is here:
https://github.com/elastic/beats/tree/main/x-pack/filebeat/processors/decode_cef
, we should locate the code that setsobserver.ip
and ensure its an array ([]string).The text was updated successfully, but these errors were encountered: