From 39aa66e46e894aeb7cf7de4dc310ca9409d6df11 Mon Sep 17 00:00:00 2001 From: Julius Volz Date: Thu, 11 Jun 2015 15:24:24 +0200 Subject: [PATCH] Place storage under working directory by default. --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 555e139d7..3555d8cc8 100644 --- a/main.go +++ b/main.go @@ -54,7 +54,7 @@ var ( 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.") - persistenceStoragePath = flag.String("storage.local.path", "/tmp/metrics", "Base path for metrics storage.") + persistenceStoragePath = flag.String("storage.local.path", "data", "Base path for metrics storage.") opentsdbURL = flag.String("storage.remote.opentsdb-url", "", "The URL of the remote OpenTSDB server to send samples to. None, if empty.") influxdbURL = flag.String("storage.remote.influxdb-url", "", "The URL of the remote InfluxDB server to send samples to. None, if empty.")