-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
Add docs for log audit manager #16927
Add docs for log audit manager #16927
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.
minor suggestions
docs/configuration/index.md
Outdated
@@ -363,6 +363,8 @@ Coordinator and Overlord log changes to lookups, segment load/drop rules, and dy | |||
|
|||
|Property|Description|Default| | |||
|--------|-----------|-------| | |||
|`druid.audit.manager.type`|Allows audited events to either be logged when set to `log` or persisted in metadata store when set to `sql`.|sql| |
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.
|`druid.audit.manager.type`|Allows audited events to either be logged when set to `log` or persisted in metadata store when set to `sql`.|sql| | |
|`druid.audit.manager.type`|Type of audit manager used for handling audited events. Audited events are logged when set to `log` or persisted in metadata store when set to `sql`.|sql| |
docs/configuration/index.md
Outdated
@@ -363,6 +363,8 @@ Coordinator and Overlord log changes to lookups, segment load/drop rules, and dy | |||
|
|||
|Property|Description|Default| | |||
|--------|-----------|-------| | |||
|`druid.audit.manager.type`|Allows audited events to either be logged when set to `log` or persisted in metadata store when set to `sql`.|sql| | |||
|`druid.audit.manager.logLevel`|Set the log level of audit events and can take values DEBUG, INFO, WARN. This gets activated only if type is `log`.|INFO| |
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.
|`druid.audit.manager.logLevel`|Set the log level of audit events and can take values DEBUG, INFO, WARN. This gets activated only if type is `log`.|INFO| | |
|`druid.audit.manager.logLevel`|Log level of audit events with possible values DEBUG, INFO, WARN. This property is used only when `druid.audit.manager.type` is set to `log`.|INFO| |
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.
Thanks for the docs, @jakubmatyszewski !
* Add docs for log audit manager * Adjust descriptions
Description
Add docs on
druid.audit.manager.type=log
implemented in Druid 29.0.0 #15480