-
Let's say my data is like this
file
I'm not going to configure logs as json thanks |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi @marksugar , I'm not sure I completely understand what you are looking for, but it seems like regular expression matching would be applicable. You can use the https://vector.dev/docs/reference/vrl/functions/#match for that in VRL. |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
Hi @marksugar !
What you have:
Will match
body
against the literal string"*WebApplicationContext*"
. I think what you want is:To match
body
against a regular expression.