Advertisement
Guest User

Untitled

a guest
May 21st, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. rule "replace timestamp"
  2. when
  3. true
  4. then
  5. debug($message.timestamp);
  6. let new_date = parse_date(to_string($message.timestamp), "yyyy-MM-dd'T'HH:mm:ss", "BR", "BRT");
  7. set_field("timestamp", new_date);
  8. debug($message.timestamp);
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement