parse multiline xmlns in json #16000
-
Hi. I have trouble with xmlns parse. Vrl don't allowed convert to string this field, apply grok for this field and etc...:
In output i see: Main questions:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @OlesyaShell 👋 ,
You can't You could use join() to convert the Array to a String and then do additional transformations.
The default for drop_on_error is |
Beta Was this translation helpful? Give feedback.
Hi @OlesyaShell 👋 ,
You can't
to_string()
an Array, the possible inputs can be<integer | float | boolean | string | timestamp | null>
(ref)You could use join() to convert the Array to a String and then do additional transformations.
The default for drop_on_error is
false
which is why the events are passed through unchanged. You can set that totrue
to drop the event, or use reroute_dropped to send them to an alternative component for separate transformations or further review.