No logs in Kibana

Hello everyone,

I performed the beats installation (packetbeat/winlogbeat) on the DCs and the logstash installation on the server. I am not getting the logs in Kibana, though i see the packets (connectivity) between the DCs and the Server.
Any suggestion ?

Welcome to our community! :smiley:

Are Beats sending to Logstash? What does your Logstash config look like?
What do your Beats and Logstash logs show?

Hello,

Thank you for welcoming :slight_smile:
Yes, the beats are sent to the Logstash.

=========Logstash conf file====
input {
beats {
port => 5044
}
}

output {
elasticsearch {
hosts => ["http://localhost:9200"]

}
}
==========Logstash logs ======
[Producer clientId=producer-1] Got error produce response with correlation id 17563 on top
[Producer clientId=producer-1] Received invalid metadata error in produce request on parti
[Producer clientId=producer-1] Got error produce response with correlation id 17563 on top
[Producer clientId=producer-1] Received invalid metadata error in produce request on parti

Do the Beats logs show that things are being shipped to Logstash?

yes, it does

Just a general comment, unless you are looking to be doing processing in Logstash, you should send Beats directly to Elasticsearch.

Otherwise, what is the output from the _cat/indices?v API? Hopefully there will be some logstash- named indices.

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