Filebeat -> logstash -> elastic -> kibana succesfully connected each other .But i dont see any log from filebeat in kibana view. Also index created in elasticsearch when filebeat connected

ElasticSearch version :7.5.2
Kibana version : 7.5.2
Filebeat version: 7.6.0
Logstash version:7.10.1

filebeat.yml

filebeat.inputs:

  • type: log
    enabled: true
    paths:
    • C:\ELASTIC_KIBANA\filebeat-7.6.0-windows-x86_64\log*

output.logstash:

The Logstash hosts

hosts: ["localhost:5044"]

logstash.conf

input {
beats {
port => 5044
}
}

output {
elasticsearch {
hosts => ["http://localhost:9200"]
index => "%{[@metadata][beat]}-%{[@metadata][version]}-%{+YYYY.MM.dd}"
#user => "elastic"
#password => "changeme"
}
}


I tried directly send to elasticsearch from filebeat . i get same situation.
Also all services are located on the same server.
Please help.
Thanks

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.