Hi Experts,
I have a filed which has EPOCH time in it e.g "1443463933000". I want to use it as a @ timestamp filed in kibana . So this is what I have done .
Step 1
--> In logstash i used a date filter and set target to this filed i.e
date {
match => ["rt","UNIX"]
target => "rt"
}
Step 2
In mapping I set this field to date type i.e
"mapping": {
"rt": {
"type": "date",
"format": "dateOptionalTime"
}
}
Step3
Now when I am selecting index based on this time in Kibana i got nothing , kibana says no result found .
Is there anything which I need to take care of ?
Thanks
VG