Skip to content

Instantly share code, notes, and snippets.

@mrichar1
Last active August 29, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrichar1/74edd50e97e6d96cb588 to your computer and use it in GitHub Desktop.
Save mrichar1/74edd50e97e6d96cb588 to your computer and use it in GitHub Desktop.
logstash output to influxdb
output {
http {
url => "http://influxdb.example.com/db/<database>/series?u=<user>&p=<pass>"
http_method => "POST"
}
}
{
"name" : "cpu_percent_used",
"columns" : ["value", "host"],
"points" : [
[99.9, "serverX"]
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment