Hey guys!
I have troubling with time stuff in kibana and logstash
I have a filter pattern for my syslogs which its timestamp it's different than time column in kibana( My logs are shown in kibana 3 hours later )
here is my filter code for my sysligs which I'm collecting them from kubernetes pods
date { match => [ "timestamp", "MMM dd HH:mm:ss" ] timezone => "Asia/Tehran" }
also I have a grok pattern like this:
syslog {
port => 6570
grok_pattern => "<%{POSINT:priority}>%{SYSLOGTIMESTAMP:timestamp} %{DATA:program}: %{GREEDYDATA:message}"
I have googled a hundred of pages but I couldn't find anything that matches my issue or maybe I missed it
Can anyone help me with this issue?