-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge of PR #107, Allow Telegraf to output data to multiple locations beyond InfluxDB, such as Riemann or Kafka #109
Conversation
@@ -23,7 +23,8 @@ | |||
# with 'required'. Be sure to edit those to make this configuration work. | |||
|
|||
# Configuration for influxdb server to send metrics to | |||
[influxdb] | |||
[outputs] | |||
[outputs.influxdb] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
a little further down it's still showing the old way to define tags
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the catch! I think I caught it in the latest update
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe I didn't do what I thought we had talked about, my understanding was the config would look like:
[tags]
dc = "us-east-1"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My bad, I got confused by a file in ./testdata, fixing that now
@sparrc thanks for making this separate PR to handle the conflicts Everything looks good to me, just had the one comment. |
e690423
to
2506500
Compare
Commented on the other one. The |
Added a commit with a Close() function, although it appears that we can't really do anything with the (I can make a separate PR on influxdb/influxdb to add a Close() function to the client) |
Merge of PR #107, Allow Telegraf to output data to multiple locations beyond InfluxDB, such as Riemann or Kafka
\cc @jipperinbham @pauldix @toddboom
This PR supports Telegraf outputting data to multiple locations beyond just InfluxDB. This is a breaking change that requires some changes to the .toml Telegraf configuration file, basically users will need to change their
influxdb
entry from this:to this
You can find more details in @jipperinbham's original PR here: #107