Hi,
i want to store my Data from my Winlogbeat on my Syslog Server.
I use the SysLog Server from my Qnap
I am running Logstash on a RedHat VM on my Qnap.
The Syslog Output Plugin is already installed.
I am now sending my data from my Winlogbeats to Logstash.
And Logstash should put the data to the Syslogserver.
But the syslog-server doesn't receives any data.
Here is my logstash-conf:
input {
beats {
port => 5044
}
}
output {
syslog {
hosts => ["qnap009"]
port => 514
protocol => "tcp"
rfc => "rfc3164"
}
stdout { codec => rubydegug }
}
I have no idea why it isn't working