Hi, I have a timefield in log entry and I have targetted it to @timestamp
in Logstash, but they appear different. For example;
time entry in log => 2017-05-15T10:14:58.992Z
@timestamp => 2017-05-15T10:30:56.015Z
below is my date filter;
date {
match => [ "timestamp", "dd-MM-yyyy HH:mm:ss.SSS aa" ]
timezone => "UTC"
target => "@timestamp"
}
Somebody kindly help me to fix this. Thank in advance.