Hi everyone, I input netflow data to ES through logstash, but I found that the @timestamp doesn't match the browser time. It delay about 10 minutes.
so in kibana the graph is delay about 10 minutes.
this is my logstash config:
input{
udp{
host => "120.127.XX.XX"
port => 5556
codec => netflow
}
}
filter{
}
output{
elasticsearch {
hosts => ["120.127.XX.XX:9200"]
}
stdout{codec=> rubydebug}
}
thank you in advance!