Hi All,
ES index is having a field with the mapping as below.
"@timestamp": {
"format": "epoch_millis",
"type": "date"
}
From logstash i want to populate this field with custom timestamp obtained from input document. The custom time stamp is in millis and i have used the filter
date{
match => ["time_mills","UNIX_MS"]
target =>"@timestamp"
}
however during indexing it fails complaining the time format issue. Can you please help