filebeatログから、下記のWARNの出力を止めたいです。
filebeatとlogstashの設定で不足等が、あるのでしょうか?
公式ドキュメントを確認したのですが、原因が不明でした。
可能でしたら、ご教示をお願いします。
■filebeatのログ出力
2019-11-20T11:11:16.230Z WARN beater/filebeat.go:368 Filebeat is unable to load the Ingest Node pipelines for the configured modules because the Elasticsearch output is not configured/enabled. If you have already loaded the Ingest Node pipelines or are using Logstash pipelines, you can ignore this warning.
■filebeatの設定
filebeat.yml
#----------------------------- Logstash output --------------------------------
output.logstash:
# The Logstash hosts
hosts: ["logstash-service-front:5044"]
pipelining: 2
■logstashの設定
logstash.conf:
input {
beats {
port => "5044"
#delete defult tags
include_codec_tag => false
}
}
filter {
}
output {
elasticsearch {
hosts => ["http://monitoring-elasticsearch-service-front:9200"]
}
}
logstash.yml:
path.data: /usr/local/logstash/data
pipeline.id: main
path.config: "/usr/local/logstash/config/*.conf"
path.logs: /usr/local/logstash/logs
pipelines.yml:
# This file is where you define your pipelines. You can define multiple.
# For more information on multiple pipelines, see the documentation:
# https://www.elastic.co/guide/en/logstash/current/multiple-pipelines.html
- pipeline.id: main
path.config: "/usr/local/logstash/config/*.conf"