Adjust notification handler flags

This commit is contained in:
Fabian Reinartz 2015-12-11 14:11:18 +01:00
parent e114ce0ff7
commit 2c8a96ecdc
1 changed files with 2 additions and 2 deletions

View File

@ -202,11 +202,11 @@ func init() {
"The URL of the alert manager to send notifications to.",
)
cfg.fs.IntVar(
&cfg.notification.QueueCapacity, "alertmanager.notification-queue-capacity", 100,
&cfg.notification.QueueCapacity, "alertmanager.notification-queue-capacity", 10000,
"The capacity of the queue for pending alert manager notifications.",
)
cfg.fs.DurationVar(
&cfg.notification.Timeout, "alertmanager.http-deadline", 10*time.Second,
&cfg.notification.Timeout, "alertmanager.timeout", 10*time.Second,
"Alert manager HTTP API timeout.",
)