File tree 2 files changed +25
-3
lines changed
2 files changed +25
-3
lines changed Original file line number Diff line number Diff line change 11
11
* [ Code of Conduct] ( project/code-of-conduct.md )
12
12
* [ Roadmap] ( project/roadmap.md )
13
13
14
- ## 🛠 Development
14
+ ## 🧱 Development
15
15
16
16
* [ Contributing] ( development/contributing.md )
17
17
* [ Setting up git] ( development/setting-up-git.md )
21
21
* [ Without Docker] ( development/building/without-docker.md )
22
22
* [ WIP: Testing] ( development/wip-testing.md )
23
23
24
- ## 👷♂ 👷♂ 👷♂ 👷♂ 👷♂ Configuration
24
+ ## 🛠 Configuration
25
25
26
26
* [ Quick Start] ( configuration/quick-start/README.md )
27
27
* [ via AWS Marketplace] ( configuration/quick-start/via-aws-marketplace.md )
40
40
* [ MSK (+Serverless) Setup] ( configuration/permissions/msk-+serverless-setup.md )
41
41
* [ Complex configuration examples] ( configuration/configuration/complex-configuration-examples/README.md )
42
42
* [ 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 )
44
44
* [ Authentication] ( configuration/authentication/README.md )
45
45
* [ Basic Authentication] ( configuration/authentication/basic-authentication.md )
46
46
* [ OAuth2] ( configuration/authentication/oauth2.md )
51
51
* [ RBAC (Role based access control)] ( configuration/rbac-role-based-access-control/README.md )
52
52
* [ Supported Identity Providers] ( configuration/rbac-role-based-access-control/supported-identity-providers.md )
53
53
* [ Data masking] ( configuration/data-masking.md )
54
+ * [ Audit log] ( configuration/audit-log.md )
54
55
* [ Serialization / SerDe] ( configuration/serialization-serde.md )
55
56
* [ OpenDataDiscovery Integration] ( configuration/opendatadiscovery-integration.md )
56
57
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