Elasticsearch 5.6
Logstash 5.6
I have a log that is created with the below field:
unixTime: 1507655093
I am using the below logstash config to parse the date into the @timestamp field:
date { match => ["unixTime", "UNIX"] }
My result is returns a date formatted as:
2017-10-10T17:04:53.000Z
What I expected was to get a date with the milliseconds included. Having all the events that could fire in a second all wrapped into the same timeframe is not ideal for log analysis.
Am I missing something simple to get logstash to output the Epoch with milliseconds?