Hi there,
I currently encounter a strange problem while trying to get my Oracle->ES transfer working.
Input is pretty much only jdbc and a "select event_timestamp from table" where the column in the database is a "TIMESTAMP WITH TIME ZONE"
My filter looks like this:
date
{
    match => [ "event_timestamp", "ISO8601" ]
}
but for whatever kind of reason, I get consistent dateparsefailures, where I'm under the impression that event_timestamp pretty much matches the ISO8601 format?
{
         "@timestamp" => 2017-07-10T15:30:05.072Z,
           "@version" => "1",
    "event_timestamp" => 2017-07-06T14:13:14.555Z,
               "tags" => [
        [0] "_dateparsefailure"
    ]
}
Is there any way to debug the date parser?
regards,
Bernhard