I have a jason array like the below
The split filter is working till sdwan.status
`split { field => "[parsed_collection][collection][sdwan:status]" }
when I try to split till path-status like this split { field => "[parsed_collection][collection][sdwan:status][path-status]" } it is throwing the below error.
"Only String and Array types are splittable"
expecting the output like the below.
parsed_collection.collection.sdwanstatus.path-status.fwd-class                      fc_nc
parsed_collection.collection.sdwanstatus.path-status.path-handle                6885632
parsed_collection.collection.sdwanstatus.path-status.conn-state                  up
parsed_collection.collection.sdwanstatus.path-status.remote-wan-link        MPLS
parsed_collection.collection.sdwanstatus.path-status.damp-flaps                 0
parsed_collection.collection.sdwanstatus.path-status.local-wan-link             WAN
parsed_collection.collection.sdwanstatus.path-status.last-flapped                2d12h04m
parsed_collection.collection.sdwanstatus.path-status.remote-wan-link-id       1
parsed_collection.collection.sdwanstatus.path-status.local-wan-link-id            1
parsed_collection.collection.sdwanstatus.path-status.adaptive-monitoring   disable
parsed_collection.collection.sdwanstatus.path-status.damp-state                  disable
parsed_collection.collection.sdwanstatus.path-status.flaps                                1
Please help me to split till path-status @Badger
