From 2c8a96ecdc50a55c9a67b3558c2ed13fc1fd3a5d Mon Sep 17 00:00:00 2001 From: Fabian Reinartz Date: Fri, 11 Dec 2015 14:11:18 +0100 Subject: [PATCH] Adjust notification handler flags --- cmd/prometheus/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/prometheus/config.go b/cmd/prometheus/config.go index 3354eea912..bbe444dea5 100644 --- a/cmd/prometheus/config.go +++ b/cmd/prometheus/config.go @@ -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.", )