-
Hi **When I print the transform to console.. this transform "read_log_uid_s" shows but when I print the transform "read_log_process_log_s" it show Here is my toml ####ADD uuid<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< ####<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< ####<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< [sinks.read_log_process_log_s] |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @kbitra ! It looks like the |
Beta Was this translation helpful? Give feedback.
Hi @kbitra !
It looks like the
read_log_process_log
transform is overwriting the event with. = parse_json!(...)
. This will replace any fields on the event. Instead, you could consider merging the fields like:. = merge(., object!(parse_json!(. rawlogmessage)))
.