-
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
Filebeat CEF processor/module mapping exception for source.user.group #17216
Comments
Pinging @elastic/siem (Team:SIEM) |
adriansr
added a commit
to adriansr/beats
that referenced
this issue
Mar 24, 2020
Extensions spriv/dpriv were mapped to {source|destination}.user.group instead of {source|destination}.user.group.name. This caused a mapping exception when attempting to ingest CEF logs that used those extensions. Fixes elastic#17216
adriansr
added a commit
that referenced
this issue
Mar 24, 2020
Extensions spriv/dpriv were mapped to {source|destination}.user.group instead of {source|destination}.user.group.name. This caused a mapping exception when attempting to ingest CEF logs that used those extensions. Fixes #17216
1 task
adriansr
added a commit
to adriansr/beats
that referenced
this issue
Mar 24, 2020
Extensions spriv/dpriv were mapped to {source|destination}.user.group instead of {source|destination}.user.group.name. This caused a mapping exception when attempting to ingest CEF logs that used those extensions. Fixes elastic#17216 (cherry picked from commit 99f483e)
1 task
adriansr
added a commit
to adriansr/beats
that referenced
this issue
Mar 24, 2020
Extensions spriv/dpriv were mapped to {source|destination}.user.group instead of {source|destination}.user.group.name. This caused a mapping exception when attempting to ingest CEF logs that used those extensions. Fixes elastic#17216 (cherry picked from commit 99f483e)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For confirmed bugs, please report:
Indexing any CEF event with the
sourceUserPrivileges
(spriv
) ordestinationUserPrivileges
(dpriv
) extensions will cause an index error:Because those fields are mapped to
source.user.group
anddestination.user.group
, which are objects under ECS. The correct mapping would besource.user.group.name
anddestination.user.group.name
.The text was updated successfully, but these errors were encountered: