From 223eaf2ca326dcaa8209689297ad13cfd07253d5 Mon Sep 17 00:00:00 2001 From: Fabian Reinartz Date: Wed, 20 May 2015 19:24:27 +0200 Subject: [PATCH] Change default config file name --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 8d596756a..ea7cc2b32 100644 --- a/main.go +++ b/main.go @@ -48,7 +48,7 @@ const deletionBatchSize = 100 // Commandline flags. var ( - configFile = flag.String("config.file", "prometheus.conf", "Prometheus configuration file name.") + configFile = flag.String("config.file", "prometheus.yml", "Prometheus configuration file name.") alertmanagerURL = flag.String("alertmanager.url", "", "The URL of the alert manager to send notifications to.") notificationQueueCapacity = flag.Int("alertmanager.notification-queue-capacity", 100, "The capacity of the queue for pending alert manager notifications.")