File tree Expand file tree Collapse file tree 2 files changed +25
-3
lines changed
Expand file tree Collapse file tree 2 files changed +25
-3
lines changed Original file line number Diff line number Diff line change 1111* [ Code of Conduct] ( project/code-of-conduct.md )
1212* [ Roadmap] ( project/roadmap.md )
1313
14- ## 🛠 Development
14+ ## 🧱 Development
1515
1616* [ Contributing] ( development/contributing.md )
1717* [ Setting up git] ( development/setting-up-git.md )
2121 * [ Without Docker] ( development/building/without-docker.md )
2222* [ WIP: Testing] ( development/wip-testing.md )
2323
24- ## 👷♂ 👷♂ 👷♂ 👷♂ 👷♂ Configuration
24+ ## 🛠 Configuration
2525
2626* [ Quick Start] ( configuration/quick-start/README.md )
2727 * [ via AWS Marketplace] ( configuration/quick-start/via-aws-marketplace.md )
4040 * [ MSK (+Serverless) Setup] ( configuration/permissions/msk-+serverless-setup.md )
4141* [ Complex configuration examples] ( configuration/configuration/complex-configuration-examples/README.md )
4242 * [ Kraft mode + multiple brokers] ( configuration/configuration/complex-configuration-examples/kraft-mode-+-multiple-brokers.md )
43- * [ SSL] ( configuration/ssl.md )
43+ * [ Kafka w/ SSL] ( configuration/ssl.md )
4444* [ Authentication] ( configuration/authentication/README.md )
4545 * [ Basic Authentication] ( configuration/authentication/basic-authentication.md )
4646 * [ OAuth2] ( configuration/authentication/oauth2.md )
5151* [ RBAC (Role based access control)] ( configuration/rbac-role-based-access-control/README.md )
5252 * [ Supported Identity Providers] ( configuration/rbac-role-based-access-control/supported-identity-providers.md )
5353* [ Data masking] ( configuration/data-masking.md )
54+ * [ Audit log] ( configuration/audit-log.md )
5455* [ Serialization / SerDe] ( configuration/serialization-serde.md )
5556* [ OpenDataDiscovery Integration] ( configuration/opendatadiscovery-integration.md )
5657
Original file line number Diff line number Diff line change 1+ # Audit log
2+
3+ Kafka-UI allows you to log all operations to your kafka clusters done within kafka-ui itself.
4+
5+ Logging can be done to either kafka topic and/or console.
6+
7+ See all the available configuration properties:
8+
9+ ```
10+ kafka:
11+ clusters:
12+ - name: local
13+ audit:
14+ topic-audit-enabled: true
15+ console-audit-enabled: true
16+ topic: '__kui-audit-log' # default name
17+ audit-topic-properties: # any kafka topic properties in format of a map
18+ - retention.ms: 43200000
19+ audit-topics-partitions: 1 # how many partitions, default is 1
20+ level: all # either ALL or ALTER_ONLY (default). ALL will log all read operations.
21+ ```
You can’t perform that action at this time.
0 commit comments