How do you deal with nested JSON when creating a parser?

How do you deal with nested JSON when creating a parser? I see that JSON filter does not support nested JSON.

0 2 262
2 REPLIES 2

Can you do something like this:

json {
source => "protoPayload.blah.nestedJsonField"
on_error => "not_json_nestedJsonField"
array_function => "split_columns"
target => "nestedJsonField"
} Then just reference values off nestedJsonField (or whatever you rename your target to) as you would normally?

I will try that, this is my first parser. Thank you, any help is appreciated