Hi,
I am using Logstash 5.6.3. I have a date time field in my log entry like 07-11-17 13:35:35.656000000 . I would like to use it as my @timestamp
, so that I am using date filter to match
it and target
to @timestamp
. As you can see, the millisecond part has 9 digits. If it had 3 digits, I would be using the below format refering this link
date {
match => [ "datefield", "dd-MM-yy HH:mm:ss.SSS" ]
target => "@timestamp"
}
Somebody kindly tell me how to match the filter to make use of 9 digits?
Thanks in advance.