You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
List of objects should result in unrolling the of the list into multiple output events. Essentially, this is replacing the need for a secondary mvexpand command.
So if the jmespath expression results in
[
{ "A" : 4, "B": 9 },
{ "A" : 1, "B": 2 }
]
Then the input result/event should be cloned and returned twice. The first time with A=4, B=9 and the second event should have A=1,B=2.
Without this, a list JSON strings could be returned, which then requires mvexpand followed by another spath.
The text was updated successfully, but these errors were encountered:
List of objects should result in unrolling the of the list into multiple output events. Essentially, this is replacing the need for a secondary
mvexpand
command.So if the jmespath expression results in
Then the input result/event should be cloned and returned twice. The first time with
A=4, B=9
and the second event should haveA=1,B=2
.Without this, a list JSON strings could be returned, which then requires
mvexpand
followed by anotherspath
.The text was updated successfully, but these errors were encountered: