-
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] add multi_fields in aws cloudtrail fileset #19021
Conversation
A keyword representation of the following fields was stored. Adding text multi_fields so it can be searched more easily. - request_parameters - response_elements - additional_eventdata - service_event_details Closes elastic#18866
Pinging @elastic/siem (Team:SIEM) |
@@ -42,6 +42,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d | |||
* iptables {pull}18756[18756] | |||
* Checkpoint {pull}18754[18754] | |||
- Preserve case of http.request.method. ECS prior to 1.6 specified normalizing to lowercase, which lost information. Affects filesets: apache/access, elasticsearch/audit, iis/access, iis/error, nginx/access, nginx/ingress_controller, aws/elb, suricata/eve, zeek/http. {issue}18154[18154] {pull}18359[18359] | |||
- In aws cloudtrail fileset add multi_fields for request_parameters, response_elements, additional_eventdata & service_event_details. {issue}18866[18866] {pull}XXX[XXX] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- In aws cloudtrail fileset add multi_fields for request_parameters, response_elements, additional_eventdata & service_event_details. {issue}18866[18866] {pull}XXX[XXX] | |
- In aws cloudtrail fileset add multi_fields for request_parameters, response_elements, additional_eventdata & service_event_details. {issue}18866[18866] {pull}19021[19021] |
- name: response_elements | ||
type: keyword | ||
description: >- | ||
The response element for actions that make changes (create, | ||
update, or delete actions). | ||
multi_fields: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this work with the proposed changes in #19020? It seems like they conflict because response_elements will no longer be string so it cannot be indexed at text.
Pending discussion of #19020 + this change.
A keyword representation of the following fields was stored. Adding
text multi_fields so it can be searched more easily.
What does this PR do?
A string representation of the following fields was stored and indexed
as keyword. Adding a text multi_fields so it can be searched more easily.
Why is it important?
Adding multi_fields makes searching easier and avoids mapping explosion
Checklist
- [ ] I have made corresponding change to the default configuration filesCHANGELOG.next.asciidoc
orCHANGELOG-developer.next.asciidoc
.How to test this PR locally
Related issues