Filebeatのログのwarning出力について

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"

I have translated your question using Google translate. Let me know if my answer is not what you wanted.

Unfortunately, it is not possible to suppress this warning in Filebeat.

@kvch さんが言うように、ただ単純にlogsを使ってファイルを読み込み、他のモジュールを一切enabledにしていなかったとしても、Logstashに送る設定をしていた場合、このWARNINGが出力されるのは避けられないようです。

If you have already loaded the Ingest Node pipelines or are using Logstash pipelines, you can ignore this warning.

とありますので、Logstash側で処理がなされているのであれば、無視していただくのが良いのではないかと思います。

今回のWarning出力不可の旨、わかりました。
対応、ありがとうございます。

I understand that this Warning cannot be output.
Thank you for the response.

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