Hello!
I have some indices with following fields
status: ["Failed", "Succeeded", "None"]
user_id: user_id
I want to add events with status None
to Failed
if they are not in Succeeded
set. This can be checked by user_id
. So I need to collect all user_id
s for status=Succeeded
and if the user_id
of a None
is not in that set, I have to add it to Failed
set. How can I achieve this by using advanced option (json inout) in the visualization?