Hi there!
I got an issue when I deploy beats agent set up to output on logstash, and using Kibana to view it.
I have 2 monitored hosts on Windows and another on Linux. When I want to use a dashboard I have several errors :
Error fetching fields for index pattern auditbeat-* (ID: auditbeat-*)
/!\ Conflict
Wrapper@http://localhost:5601/31997/bundles/commons.bundle.js:3:465601
_createSuper/<@http://localhost:5601/31997/bundles/commons.bundle.js:3:464389
HttpFetchError@http://localhost:5601/31997/bundles/commons.bundle.js:3:467368
_callee3$@http://localhost:5601/31997/bundles/commons.bundle.js:3:1287438
l@http://localhost:5601/31997/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:288:969217
s/o._invoke</<@http://localhost:5601/31997/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:288:968971
_/</e[t]@http://localhost:5601/31997/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:288:969574
asyncGeneratorStep@http://localhost:5601/31997/bundles/commons.bundle.js:3:1280961
_next@http://localhost:5601/31997/bundles/commons.bundle.js:3:1281290
I have a very simple pipeline in logstash:
input {
beats {
type => "beats"
port => 5044
}
}
output {
stdout {
codec => rubydebug
}
elasticsearch {
hosts => ["elasticsearch:9200"]
manage_template => false
index => "%{[@metadata][beat]}-%{[host][hostname]}-%{[@metadata][version]}-%{+YYYY.MM.dd}"
document_type => "%{[@metadata][type]}"
}
}
I've no idea of what I'm supposed to fix...
Help?