Initially logstash was running when we were on 6.8 but as soon as we upgraded to 7.9.3 it started failing.
Using salesforce logstash plugin error msg retrieves the time value successfully, but looks to fail when sending to elastic search.
failed to parse date field [1.606245613433E12] with format [strict_date_optional_time||epoch_millis]", "caused_by"=>{"type"=>"date_time_parse_exception", "reason"=>"date_time_parse_exception: Failed to parse with all enclosed parsers"}}}}}}
logstash Conf file :
filter {
date { tag_on_failure => []
match => ["CreatedTimeStamp__c", "UNIX_MS"] }
mutate {
add_field => { "logtype" => "salesforce" }
rename => { "Message__c" => "message" }
rename => { "Level__c" => "loglevel" }
remove_field => [ "CreateTimeStamp__c"]
}