Replace timestamp from another indexed field

Hello @corporate_gadfly

I would have to agree with you on the pipeline. Maybe something like this might help.

rule “ibm_datetime”
when
    true
then
    let new_date = parse_date(to_string($message.http_time), “yyyy-MM-dd’T’HH:mm:ss”, "CET,UTC,etc...");
    set_field(“timestamp”, new_date);
end

EDIT: I found this here.

Hope that helps.