From 4e82b37325e03c828fbbf20f5054b41561e198f4 Mon Sep 17 00:00:00 2001 From: Evan Phoenix Date: Thu, 21 May 2015 09:45:09 -0700 Subject: [PATCH] Clearify some required config parameters --- config.go | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/config.go b/config.go index 25c3ef4b1..6d5a89bf3 100644 --- a/config.go +++ b/config.go @@ -228,12 +228,15 @@ var header = `# Tivan configuration # They indicate to the plugin to use their own builtin configuration to # connect to the local system. +# NOTE: The configuration has a few required parameters. They are marked +# with 'required'. Be sure to edit those to make this configuration work. + # Configuration for influxdb server to send metrics to -# [influxdb] -# url = "http://10.20.2.4" +[influxdb] +url = "http://10.20.2.4:8086" # required. Host and port are necessary as well. +database = "tivan" # required. You need to pre-create this in influxdb # username = "tivan" # password = "metricsmetricsmetricsmetrics" -# database = "tivan" # user_agent = "tivan" # tags = { "dc": "us-east-1" }