Hello,
I am very new to ELK and trying to ingest data from Graphite but its not working.
Here is my logstash pipeline:
graphite {
host => "****"
port => "****"
mode => "client"
type => "graphite-format-metrics"
codec => graphite {
include_metrics => [".*"]
metrics_format => "terminals.%{host}.printer.*"
}
}
}
output {
elasticsearch {
hosts => ["a", "b", "c"]
ssl => true
user => "elastic"
password => "****"
index => "logstash-graphite-%{+YYYY.MM.dd}"
cacert => "****.cer"
}
}
Can someone tell me what is wrong?
[PS: Host, Hosts, port names are masked]