-
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
Fixes ECS audit logging config settings for docker environments #92497
Conversation
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.
Author's notes for reviewers.
xpack.security.audit.appender.type | ||
xpack.security.audit.appender.layout.type | ||
xpack.security.audit.appender.layout.highlight | ||
xpack.security.audit.appender.layout.pattern | ||
xpack.security.audit.appender.legacyLoggingConfig | ||
xpack.security.audit.appender.fileName | ||
xpack.security.audit.appender.policy.type | ||
xpack.security.audit.appender.policy.interval | ||
xpack.security.audit.appender.policy.modulate | ||
xpack.security.audit.appender.policy.size | ||
xpack.security.audit.appender.strategy.type | ||
xpack.security.audit.appender.strategy.max | ||
xpack.security.audit.appender.strategy.pattern |
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.
Many of these keys changed in 7.12 via #90764 -- kind
-> type
, and path
-> fileName
.
Since we don't have anyone using these values in Docker yet, I think we should only support the new values, and we should not backport this PR to 7.11.
xpack.security.audit.appender.strategy.type | ||
xpack.security.audit.appender.strategy.max | ||
xpack.security.audit.appender.strategy.pattern | ||
xpack.security.audit.ignore_filters |
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.
The ignore_filters
setting is an array. Users would configure .ignore_filters[].actions[]
, .ignore_filters[].categories[]
, etc. But I think that we shouldn't specify actions,
categories`, etc. in the Docker kibana vars. Is that correct?
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.
👍 for now, open issue at #39595
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, thanks for the fix!
💚 Build SucceededMetrics [docs]
History
To update your PR or re-run it, just comment with: |
Pinging @elastic/kibana-operations (Team:Operations) |
Resolves #92046.