-
Notifications
You must be signed in to change notification settings - Fork 117
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
Field validator should check for ECS fields marked as arrays #615
Comments
Another validation that would be nice to apply is for the |
So the |
Hey @andrewkroh, I am implementing the check for arrays in #765, and I have found that pipeline tests of several packages in the integrations repository (35 out of 140) would fail if we enable this. So I wonder if we should do it. What would be the advantage of checking that fields are formatted as arrays? In principle for Elasticsearch it is the same. |
You're right, for Elasticsearch indexing it doesn't make a difference whether the field is a scalar or an array. ECS added an array indicator to the schema primarily for things other than Elasticsearch that might be producing or consuming the data. I think it would be advantageous if the One of the earliest issues I recall while implementing ECS and having consumers in Kibana was with TypeScipt code in Kibana that was generated/derived from ECS. There was a mismatch between the _source data and the generated types due to arrays. That code now handles both IIRC, but it would nice if we were consistent with our types so future developers can write simpler code to read/process ECS data.
Is there a way we can enable this in permissive manner while we fix those 35? It's kind of a general problem for any case where we enable stricter validation (like checking that |
I was wondering if Elasticsearch provides something to help here, and I have found that there is a meta issue about improving the situation for single vs multi-valued fields. elastic/elasticsearch#80825
There isn't at the moment, but this is something that has already appeared in other discussions. Marcin recently open an issue about different validation modes (elastic/package-spec#313). I will put this issue on hold till we have something like this. |
Implemented as part of package spec 2.0.0. Packages will be able to fix normalization issues as they upgrade to this format. |
It would be helpful if elastic-package could trigger errors on ECS event fields that are not arrays. For example, host.ip is specified to be an array so events that contain the field should be an array of ips.
The generated YAML specification indicates the array type. https://github.com/elastic/ecs/blob/9b463c9116eb594a3be10db01c3236fd6b44b996/generated/ecs/ecs_flat.yml#L4536-L4543
The text was updated successfully, but these errors were encountered: