Log files not forwarded to Elasticsearch

Hi everyone,

i have configured winlogbeat to forward windows logs to logstash and successfully receiving logs in logstash(which i can see in command prompt), but i'm not getting the logs in elasticsearch.

can anyone guide me ?

please find my logstash config:

input {

beats {
port => 5044
#ssl_certificate => "C:\siem\logfw.crt"
#ssl_key => "C:\siem\logfw.key"
}

{

output {
stdout { codec => rubydebug }

elasticsearch {

hosts => ["localhost:7778"]
index => "logstash-client1-%{+YYYY.MM.dd}"

}
}

Seems to be the same issue as this:

Is there anything in stdout?

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