我正在使用rsyslog服务器的上述配置将其输出到logstash,
$tail /etc/rsyslog.d/70-output.conf
*.* @@logstash:5514
在logstash.conf中,我已将其配置如下,
input {
syslog {
type => "syslog"
port => "5514"
}
}
output {
file {
path => "/var/log/logstash/debug.log"
codec => "json"
}
}
如何进一步调试?