-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
[SIEM] Change DNS fields for ECS #43757
Comments
Pinging @elastic/siem |
We use DNS fields in two places: Network KPIs, and the Top DNS domains table (see #43649). Luckily, only Network KPI: DNS queriesWe use Network: Top DNS domainsWe use:
The problem is that if we change from querying For 7.x, would filling |
Yes, creating this alias in Beats 7.4 will work for counts and aggregations as we expect. Whenever the document themselves are read however (as opposed to aggregation results) -- for example in a table listing -- we'll have to make sure we look for dns.question.registered_domain, and if not there, fall back to dns.question.etld_plus_one. |
Clarifying my comment from yesterday. I think we should keep both fields populated until 8.0, not put in an alias just yet. The alias only helps for operations that depend on the mapping, like aggs and searches. But whenever the source document is being used directly (table listings, further processing in the pipeline, etc) the field I think this is a significant enough breaking change, especially since it's a very useful field. So I'd rather have both fields present. If users think it's wasteful, they can always remove the old one. We should update the old field definition to say it's being deprecated in favor of |
I think this can be closed, right? |
Yes, closing. |
The SIEM app currently uses DNS data on the Network page and the field names are based on Packetbeat. ECS has now added fields for DNS and the app should be updated to utilize the ECS fields rather than Packetbeat fields.
One change I know that's necessary is to update
dns.question.etld_plus_one
todns.question.registered_domain
. But we should double check the other fields and areas of the SIEM app.Work to update Beats is in-progress.
The text was updated successfully, but these errors were encountered: