Hy guys
After I installed x-pack for monitoring logstash - elasticsearch and kibana, I've the following error on logstash:
[2017-02-07T10:18:05,181][ERROR][logstash.inputs.metrics ] Failed to create monitoring event {:message=>"For path: events", :error=>"LogStash::Instrument::MetricStore::MetricNotFound"}
I followed the installation guide, but maybe I did somenthing wrong
logstash.yml
......
......
xpack.monitoring.elasticsearch.url: "http://localhost:9200"
xpack.monitoring.elasticsearch.username: "logstash_system"
xpack.monitoring.elasticsearch.password: "changeme"
/etc/logstash/conf.d/logstash.conf
input {
beats {
port => 5044
},
user => logstash_internal
password => changeme
}
output {
elasticsearch {
hosts => "localhost:9200"
manage_template => false
index => "%{[@metadata][beat]}-%{+YYYY.MM.dd}"
document_type => "%{[@metadata][type]}"
},
user => logstash_internal
password => changeme
}
Also, now, in Kibana I don't see any new metricbeat data
(the metricbeat instances are configured to send the data to logstash instance)
I didn't change any default password
thank you