Hi,
I installed Logstash, ElasticSearch, Kibana, and ElasticFlow
my logstash config :
output {
elasticsearch {
hosts => ["localhost:9200"]
manage_template => false
index => "%{[@metadata][netflow]}-%{[@metadata][version]}-%{+YYYY.MM.dd}"
}
}
input {
udp {
host => "192.168.100.1"
port => 2055
codec => netflow
}
}
the first question is Why logstash is listening on 0.0.0.0:2055 :
udp 0 0.0.0.0:2055 0.0.0.0:* 13798/java
from /var/log/logstash/logstash-plain.log :
UDP listener started {:address=>"0.0.0.0:2055", :receive_buffer_bytes=>"212992", :queue_size=>"2000"}
And my main issue is I don't see the netflow traffic in Kibana Dashboard
I've verified that the netflow packages are riched the host. I checked it using tcpdump and simple udp socket app.
Where does Logstash/ElasticSearch collect received data?
Will I need to change/add/fix something?
Thank you for your help