-
I have to parse events coming from a file which are stored there as JSON-strings. Is there a way to pass an already parsed structure from filter to remap to work with a structure in remap instead of parsing the source string again? I suppose this is CPU consuming after all. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
I'd recommend doing the parsing in a |
Beta Was this translation helpful? Give feedback.
I'd recommend doing the parsing in a
remap
transform first, and then, doing thefilter
. Filter conditions are read-only and so cannot modify the event.