logstash使用eventlog插件收集windows系统日志发送到elasticsearch在kibana上显示出现中文乱码问题,各位大佬有什么解决办法吗
Logstash | 作者 wk200836 | 发布于2020年05月08日 | 阅读数:3165
logstash运行在windows系统里配置文件如下:
input { stdin { } }
output {
elasticsearch {hosts => ["172.16.2.38:9200"] }
stdout { codec => rubydebug }
}
input {
eventlog {
type => 'wineventLog'
logfile => ["System"]
codec => plain {charset => "GBK"}
}
}
output {
elasticsearch {
hosts => ["172.16.2.38:9200"]
index => "wievent-%{+YYYY.MM.dd}"
}
}
控制台显示乱码,elasticsearch上也显示乱码,kibana也显示乱码,是不是eventlog插件要做什么设置,求各位大佬帮帮忙
input { stdin { } }
output {
elasticsearch {hosts => ["172.16.2.38:9200"] }
stdout { codec => rubydebug }
}
input {
eventlog {
type => 'wineventLog'
logfile => ["System"]
codec => plain {charset => "GBK"}
}
}
output {
elasticsearch {
hosts => ["172.16.2.38:9200"]
index => "wievent-%{+YYYY.MM.dd}"
}
}
控制台显示乱码,elasticsearch上也显示乱码,kibana也显示乱码,是不是eventlog插件要做什么设置,求各位大佬帮帮忙
0 个回复