Hi!
Could anyone tell me what could be wrong?
I'm using ELK in Docker and trying to send Elastic log to itself via Filebeat > Logstash
filebeat.yml
filebeat.config:
modules:
path: ${path.config}/modules.d/*.yml
reload.enabled: false
filebeat.modules:
- module: elasticsearch
server:
enabled: true
var.paths:
- /usr/share/elasticsearch/logs/Zerum.log
#----------------------------- Logstash output --------------------------------
output.logstash:
hosts: ["wda_log_indexer:5044"]
logstash.yml
http.host: 0.0.0.0
log.level: trace
monitoring.elasticsearch.hosts: http://data-master:9200
xpack.monitoring.enabled: false
Thank you all!!