-
Notifications
You must be signed in to change notification settings - Fork 527
fix(packages/falco): use ecs definition for process.group.{id,name} #13589
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
Conversation
Falco was using data type 'text' for the process.group.id and process.group.name fields, but those fields are defined as 'keyword' in ECS leading to conflicts with other packages that are following ECS. I modified the field definitions to use 'external: ecs' where possible. And removed unused attributes from fields.yml files.
🚀 Benchmarks reportTo see the full report comment with |
|
Pinging @elastic/security-service-integrations (Team:Security-Service Integrations) |
| description: Preserved Falco field | ||
| external: ecs | ||
| - name: event.dataset | ||
| type: constant_keyword |
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.
Any specific reason we are not removing type: constant_keyword here, since we are already referencing ecs ?
| external: ecs | ||
| value: falco.alerts | ||
| - name: event.module | ||
| type: constant_keyword |
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.
same query as above
ShourieG
left a comment
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.
LGTM
|
💚 Build Succeeded
History
|
|
Package falco - 1.3.1 containing this change is available at https://epr.elastic.co/package/falco/1.3.1/ |
This essentially replays the field definitions changes in elastic#13589 and elastic#13589 but for the alerts_agent data stream.
This essentially replays the field definitions changes in elastic#13589 and elastic#13589 but for the alerts_agent data stream.




Proposed commit message
Falco was using data type 'text' for the process.group.id and
process.group.name fields, but those fields are defined as 'keyword' in
ECS leading to conflicts with other packages that are following ECS.
I modified the field definitions to use 'external: ecs' where possible.
And removed unused attributes from fields.yml files.
Checklist
changelog.ymlfile.Author's Checklist
How to test this PR locally
Related issues
Screenshots