0
我想从logstash中的日志文件中获取日志这是我的logstash配置文件请帮我解决这个问题。无法解析logstash中的日志文件中的日志
输入{
tcp {
port => 5022
type => "syslog"
}
udp {
port => 5022
type => "syslog"
}
file {
path => ["/var/log/haproxy.log"]
type => "syslog"
start_position => "beginning"
}
}