This is an automated email from the ASF dual-hosted git repository.
kfaraz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git
The following commit(s) were added to refs/heads/master by this push:
new 82d9ff9cc8f Add docs for log audit manager (#16927)
82d9ff9cc8f is described below
commit 82d9ff9cc8feba8280a694254970eb67fa8fd35c
Author: Jakub Matyszewski <[email protected]>
AuthorDate: Tue Aug 20 12:28:31 2024 +0200
Add docs for log audit manager (#16927)
* Add docs for log audit manager
* Adjust descriptions
---
docs/configuration/index.md | 2 ++
1 file changed, 2 insertions(+)
diff --git a/docs/configuration/index.md b/docs/configuration/index.md
index c9ab31393d5..61ddd8abcea 100644
--- a/docs/configuration/index.md
+++ b/docs/configuration/index.md
@@ -363,6 +363,8 @@ Coordinator and Overlord log changes to lookups, segment
load/drop rules, and dy
|Property|Description|Default|
|--------|-----------|-------|
+|`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|
+|`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|
|`druid.audit.manager.auditHistoryMillis`|Default duration for querying audit
history.|1 week|
|`druid.audit.manager.includePayloadAsDimensionInMetric`|Boolean flag on
whether to add `payload` column in service metric.|false|
|`druid.audit.manager.maxPayloadSizeBytes`|The maximum size of audit payload
to store in Druid's metadata store audit table. If the size of audit payload
exceeds this value, the audit log would be stored with a message indicating
that the payload was omitted instead. Setting `maxPayloadSizeBytes` to -1
(default value) disables this check, meaning Druid will always store audit
payload regardless of it's size. Setting to any negative number other than `-1`
is invalid. Human-readable format [...]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]