Hi everyone,
I'm sending some network logs from RSA Netwitness SIEM to a logstash server over TCP on port 5515.
Currently logstash is not able to separate the incoming data into separate records, its considering the entire stream as a single record.
When I tried to listen on same port with Rsyslog, each record is available in proper format. So it seems to be an issue with logstash
Please find below one sample conf file I've been testing
input {
tcp {
host => "0.0.0.0"
port => 5515
type => "syslogType"
}
}
output { codec => "rubydebug" }
With this conf, it's not printing anything on console until we take logstash restart.
Once logstash is restarted, it will immediately display all the records received into a single message.
Currently I'm using 6.5.4 version of logstash, but I'm facing same issue with
7.5.2 as well
Kindly let me know if any one of you have faced this before or have any suggestions for me
Thank You!!!