Hi,
We have some issues with our environmet after the upgrade
Wazuh Manager 3.8.1 -> 3.10.2
ELK 6.5.4 -> 7.3.2
We are unable to receive events generated by Filebeat through Logstash.
It works if we configure Filebeat to send events directly to Elasticsearch, but we need Logstash in our setup.
First, we point Filebeat to Elasticsearch and create the pipeline:
filebeat setup --pipelines --modules wazuh
The, we configure Logstash to use the pipeline:
File: /etc/logstash/conf.d/01-wazuh-remote.conf
----------------------------------------------------------------------------
# Wazuh - Logstash configuration file
## Remote Wazuh Manager - Filebeat input
input {
beats {
port => 5000
codec => "json_lines"
}
}
output {
elasticsearch {
hosts => ["elasticsearch-00:9200"]
manage_template => false
index => "wazuh-alerts-3.x-%{+YYYY.MM.dd}"
pipeline => "%{[@metadata][pipeline]}"
}
}
----------------------------------------------------------------------------
We 've configured the Logstash output based on this document:
Extra info (versions):
Filebeat 7.3.2
ELK 7.3.2
Wazuh Manager 3.10.2
Wazuh Agents 3.8.1
Any help would be appreciated ...
Regards!