Graphite input in Logstash -
has used graphite input in logstash?
graphite has both input , output available in logstash.
how did proceed?
yes, have captured input info in graphite format. i’m logstash newbie, think need extract info using filter.
see below example, think work single metrics, not pickle format.
input { graphite { port => 2003 type => "graphite-format-metrics" } } filter { if [type] == "graphite-format-metrics" { grok { match => [ "message", "%{data:metric_name} %{number:metric_value:float} %{posint:timestamp}" ] } } }
logstash graphite
No comments:
Post a Comment