diff --git a/internal/logger/help.go b/internal/logger/help.go index db9379a16..9619cbbbe 100644 --- a/internal/logger/help.go +++ b/internal/logger/help.go @@ -40,24 +40,30 @@ var ( }, config.HelpKV{ Key: ClientCert, - Description: "mTLS certificate for Logger Webhook authentication", + Description: "mTLS certificate for webhook authentication", Optional: true, Type: "string", Sensitive: true, }, config.HelpKV{ Key: ClientKey, - Description: "mTLS certificate key for Logger Webhook authentication", + Description: "mTLS certificate key for webhook authentication", Optional: true, Type: "string", Sensitive: true, }, config.HelpKV{ Key: QueueSize, - Description: "configure channel queue size for Logger Webhook targets", + Description: "configure channel queue size for webhook targets", Optional: true, Type: "number", }, + config.HelpKV{ + Key: QueueDir, + Description: `staging dir for undelivered logger messages e.g. '/home/logger-events'`, + Optional: true, + Type: "string", + }, config.HelpKV{ Key: Proxy, Description: "proxy url endpoint e.g. http(s)://proxy", @@ -89,24 +95,30 @@ var ( }, config.HelpKV{ Key: ClientCert, - Description: "mTLS certificate for Audit Webhook authentication", + Description: "mTLS certificate for webhook authentication", Optional: true, Type: "string", Sensitive: true, }, config.HelpKV{ Key: ClientKey, - Description: "mTLS certificate key for Audit Webhook authentication", + Description: "mTLS certificate key for webhook authentication", Optional: true, Type: "string", Sensitive: true, }, config.HelpKV{ Key: QueueSize, - Description: "configure channel queue size for Audit Webhook targets", + Description: "configure channel queue size for webhook targets", Optional: true, Type: "number", }, + config.HelpKV{ + Key: QueueDir, + Description: `staging dir for undelivered audit messages e.g. '/home/audit-events'`, + Optional: true, + Type: "string", + }, config.HelpKV{ Key: config.Comment, Description: config.DefaultComment, @@ -192,6 +204,18 @@ var ( Optional: true, Type: "string", }, + config.HelpKV{ + Key: QueueSize, + Description: "configure channel queue size for Kafka targets", + Optional: true, + Type: "number", + }, + config.HelpKV{ + Key: QueueDir, + Description: `staging dir for undelivered audit messages to Kafka e.g. '/home/audit-events'`, + Optional: true, + Type: "string", + }, config.HelpKV{ Key: config.Comment, Description: config.DefaultComment,