ekaterinadimitrova2 commented on a change in pull request #1051:
URL: https://github.com/apache/cassandra/pull/1051#discussion_r688183967
##########
File path: src/java/org/apache/cassandra/tools/nodetool/EnableAuditLog.java
##########
@@ -47,9 +49,37 @@
@Option(title = "excluded_users", name = { "--excluded-users" },
description = "Comma separated list of users to be excluded for audit log. If
not set the value from cassandra.yaml will be used")
private String excluded_users = null;
+ @Option(title = "roll_cycle", name = {"--roll-cycle"}, description = "How
often to roll the log file (MINUTELY, HOURLY, DAILY).")
+ private String rollCycle = null;
+
+ @Option(title = "blocking", name = {"--blocking"}, description = "If the
queue is full whether to block producers or drop samples [true|false].")
+ private String blocking = null;
+
+ @Option(title = "max_queue_weight", name = {"--max-queue-weight"},
description = "Maximum number of bytes of query data to queue to disk before
blocking or dropping samples.")
+ private int maxQueueWeight = Integer.MIN_VALUE;
+
+ @Option(title = "max_log_size", name = {"--max-log-size"}, description =
"How many bytes of log data to store before dropping segments. Might not be
respected if a log file hasn't rolled so it can be deleted.")
+ private long maxLogSize = Long.MIN_VALUE;
+
+ @Option(title = "archive_command", name = {"--archive-command"},
description = "Command that will handle archiving rolled full query log files."
+
Review comment:
```suggestion
@Option(title = "archive_command", name = {"--archive-command"},
description = "Command that will handle archiving rolled audit log files." +
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]