Winlogbeatログ送信時に文字化けします。

logstashにwinlogbeatのログを送信したところ、下記のような警告が出力されログのエラーメッセージが日本語で表示されません。設定方法などございましたら、ご教授いただけると助かります。

[2020-03-06T02:38:35,180][WARN ][logstash.codecs.line ][main] Received an event that has a different character encoding than you configured.

●logstashの変換ファイル(logstash.conf)

input {
beats {
port => 5044
}
}
output {
elasticsearch {
hosts => "elasticsearch:9200"
user => "elastic"
password => "changeme"
}
}

●logstash.yml

server.name: kibana
server.host: "0"
elasticsearch.hosts: [ "http://elasticsearch:9200" ]
xpack.monitoring.ui.container.elasticsearch.enabled: true

elasticsearch.username: elastic
elasticsearch.password: changeme

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