I have configured packetbeat to send data to logstash and I have setup a conf file in logstash; however, seems nothing is generated, can anyone advise me for how to collect network data with packetbeat and logstash?
input{
beats{
port => 5044
}
}
output{
stdout{codec=>rubydebug}
elasticsearch{
hosts => "localhost"
}
}
Great Thanks in Advance.