Hi,
I am parsing log file and one of my field is :
2020-06-26 12:56:15.258
A part of conf file in logstash is :
grok {
match => {
"message" => "%{TIMESTAMP_ISO8601:logdates}"
}
}
date {
match => [ "logdates","yyyy-MM-dd HH:mm:ss.SSS" ]
target => "logdates"
timezone => "CET"
}
But when I go to Kibana, I can only see @timestamp for a Time Filter when creating my Index Pattern. Any ideas on what I am doing wrong?
Really appreciate any help.