-
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
Support sending metrics to Kafka #38
Comments
👍 |
👍 Has work started on this or are you looking for some help/ideas? In another project similar to this, we use In/Out channels to wire up the message communication and defined a standard Msg struct to be passed along. It seems to work well for that project so didn't know if something similar would be good here as well. |
We haven't started work on this and are definitely looking for help. We want to be able to to output to one or more output sinks like Kafka or InfluxDB or Riemann
|
We should be able to send metrics to a variety of places other than InfluxDB. This means that we'll need to have some sort of framework for defining new output sinks. This also means that we should be able to disable sending metrics to any of these output sinks, including InfluxDB.
What I'm thinking is to pull the InfluxDB settings into another area like
outputs
. Then, like plugins, define a number of different outputs where metrics can be sent to.For Kafka, we should send metrics using the line protocol. This should be fairly simply using the InfluxDB client to convert the metrics to their line protocol equivalents.
The work to add support for Riemann (#34) will also need this output sink implementation.
The text was updated successfully, but these errors were encountered: