Hi
I want to order my log in kibana based on log timestamp
my logstash.conf
filter {
grok {
match => [ "message", "%{DATESTAMP:timestamp}" ]
}
date {
locale => "en"
match => [ "timestamp", "YYYY-MM-dd HH:mm:ss" ]
target => ["timestamp"]
}
}
"@version" => "1",
"@timestamp" => "2017-03-27T05:40:21.660Z",
"host" => "Vishnu-Prasad.local",
"path" => "/Users/tcstsb3/Downloads/log/2.log",
"timestamp" => "2016-12-25T06:43:57.000Z"
Note : Im integrating multiple log file in logstash ,In kibana i want to showup based on ordering log time .
Above conf i got timestamp of log file ,
I Dont know how to filter that time and show proper order in kibana
Can you help me how to give filter in conf so that kibana will show proper order
Thanks in advance