Exclude Unicode symbol in Grok pattern

Hi,
Is there any option to exclude Unicode symbol from line directly in grok pattern.
I'm trying to read json data line by line thought AWS Glue "getSourceWithFormat" method which use grok pattern for string parsing.

line in file:

{"age":12,"test":0,"f":"\u0085 NE 911,Aven","f2":"090","f3":"U019"}

if I use: %{GREEDYDATA:message} it will return only part of line: {"age":12,"test":0,"f":"
because of \u0085(new line) symbol.

How I could skip this symbol directly in my pattern in order to get full message in output?

Thanks.

found answer here: regex - Exclude Unicode symbol in Grok pattern - Stack Overflow

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.