Last active
August 29, 2015 14:16
-
-
Save mrichar1/74edd50e97e6d96cb588 to your computer and use it in GitHub Desktop.
logstash output to influxdb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
output { | |
http { | |
url => "http://influxdb.example.com/db/<database>/series?u=<user>&p=<pass>" | |
http_method => "POST" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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