Hello
The goal is to write the filebeat-Logs via the output.elasticsearch into the logstash index.
We have done the following entry in the filebeat.yml
setup.template:
name: "logstash"
pattern: "logstash-*"
output.elasticsearch:
hosts: [":9200" ]
pipeline: "filebeat-7.4.0-%{[fields.pipelinect]}"
index: "logstash-%{[agent.version]}-%{+yyyy.MM.dd}"
After restarting the filebeat service we receive the logs not in the logstash-index. We still receive them in the filebeat-7.4.0-Index.
What do we wrong in the configuration.
Thank for tipps
Ritzo