Skip to content

Commit

Permalink
Increase default audit topic retention time
Browse files Browse the repository at this point in the history
  • Loading branch information
Haarolean committed Jan 31, 2024
1 parent c75c5cc commit a67e185
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 a67e185

Please sign in to comment.