mirror of
https://github.com/minio/minio.git
synced 2025-04-20 02:27:50 -04:00
add queue_dir to help message for logger/audit targets
This commit is contained in:
parent
3515b99671
commit
07b1281046
@ -40,24 +40,30 @@ var (
|
|||||||
},
|
},
|
||||||
config.HelpKV{
|
config.HelpKV{
|
||||||
Key: ClientCert,
|
Key: ClientCert,
|
||||||
Description: "mTLS certificate for Logger Webhook authentication",
|
Description: "mTLS certificate for webhook authentication",
|
||||||
Optional: true,
|
Optional: true,
|
||||||
Type: "string",
|
Type: "string",
|
||||||
Sensitive: true,
|
Sensitive: true,
|
||||||
},
|
},
|
||||||
config.HelpKV{
|
config.HelpKV{
|
||||||
Key: ClientKey,
|
Key: ClientKey,
|
||||||
Description: "mTLS certificate key for Logger Webhook authentication",
|
Description: "mTLS certificate key for webhook authentication",
|
||||||
Optional: true,
|
Optional: true,
|
||||||
Type: "string",
|
Type: "string",
|
||||||
Sensitive: true,
|
Sensitive: true,
|
||||||
},
|
},
|
||||||
config.HelpKV{
|
config.HelpKV{
|
||||||
Key: QueueSize,
|
Key: QueueSize,
|
||||||
Description: "configure channel queue size for Logger Webhook targets",
|
Description: "configure channel queue size for webhook targets",
|
||||||
Optional: true,
|
Optional: true,
|
||||||
Type: "number",
|
Type: "number",
|
||||||
},
|
},
|
||||||
|
config.HelpKV{
|
||||||
|
Key: QueueDir,
|
||||||
|
Description: `staging dir for undelivered logger messages e.g. '/home/logger-events'`,
|
||||||
|
Optional: true,
|
||||||
|
Type: "string",
|
||||||
|
},
|
||||||
config.HelpKV{
|
config.HelpKV{
|
||||||
Key: Proxy,
|
Key: Proxy,
|
||||||
Description: "proxy url endpoint e.g. http(s)://proxy",
|
Description: "proxy url endpoint e.g. http(s)://proxy",
|
||||||
@ -89,24 +95,30 @@ var (
|
|||||||
},
|
},
|
||||||
config.HelpKV{
|
config.HelpKV{
|
||||||
Key: ClientCert,
|
Key: ClientCert,
|
||||||
Description: "mTLS certificate for Audit Webhook authentication",
|
Description: "mTLS certificate for webhook authentication",
|
||||||
Optional: true,
|
Optional: true,
|
||||||
Type: "string",
|
Type: "string",
|
||||||
Sensitive: true,
|
Sensitive: true,
|
||||||
},
|
},
|
||||||
config.HelpKV{
|
config.HelpKV{
|
||||||
Key: ClientKey,
|
Key: ClientKey,
|
||||||
Description: "mTLS certificate key for Audit Webhook authentication",
|
Description: "mTLS certificate key for webhook authentication",
|
||||||
Optional: true,
|
Optional: true,
|
||||||
Type: "string",
|
Type: "string",
|
||||||
Sensitive: true,
|
Sensitive: true,
|
||||||
},
|
},
|
||||||
config.HelpKV{
|
config.HelpKV{
|
||||||
Key: QueueSize,
|
Key: QueueSize,
|
||||||
Description: "configure channel queue size for Audit Webhook targets",
|
Description: "configure channel queue size for webhook targets",
|
||||||
Optional: true,
|
Optional: true,
|
||||||
Type: "number",
|
Type: "number",
|
||||||
},
|
},
|
||||||
|
config.HelpKV{
|
||||||
|
Key: QueueDir,
|
||||||
|
Description: `staging dir for undelivered audit messages e.g. '/home/audit-events'`,
|
||||||
|
Optional: true,
|
||||||
|
Type: "string",
|
||||||
|
},
|
||||||
config.HelpKV{
|
config.HelpKV{
|
||||||
Key: config.Comment,
|
Key: config.Comment,
|
||||||
Description: config.DefaultComment,
|
Description: config.DefaultComment,
|
||||||
@ -192,6 +204,18 @@ var (
|
|||||||
Optional: true,
|
Optional: true,
|
||||||
Type: "string",
|
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{
|
config.HelpKV{
|
||||||
Key: config.Comment,
|
Key: config.Comment,
|
||||||
Description: config.DefaultComment,
|
Description: config.DefaultComment,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user