Browse Source

Adjust notification handler flags

pull/1262/head
Fabian Reinartz 9 years ago
parent
commit
2c8a96ecdc
  1. 4
      cmd/prometheus/config.go

4
cmd/prometheus/config.go

@ -202,11 +202,11 @@ func init() {
"The URL of the alert manager to send notifications to.", "The URL of the alert manager to send notifications to.",
) )
cfg.fs.IntVar( 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.", "The capacity of the queue for pending alert manager notifications.",
) )
cfg.fs.DurationVar( 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.", "Alert manager HTTP API timeout.",
) )

Loading…
Cancel
Save