Skip to content

Commit

Permalink
Audit: Increase default audit topic retention time (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
Haarolean authored Feb 17, 2024
1 parent 877272b commit 5c093ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class AuditService implements Closeable {
private static final String DEFAULT_AUDIT_TOPIC_NAME = "__kui-audit-log";
private static final int DEFAULT_AUDIT_TOPIC_PARTITIONS = 1;
private static final Map<String, String> DEFAULT_AUDIT_TOPIC_CONFIG = Map.of(
"retention.ms", String.valueOf(TimeUnit.DAYS.toMillis(7)),
"retention.ms", String.valueOf(TimeUnit.DAYS.toMillis(90)),
"cleanup.policy", "delete"
);
private static final Map<String, Object> AUDIT_PRODUCER_CONFIG = Map.of(
Expand Down

0 comments on commit 5c093ee

Please sign in to comment.