I am trying the following query. However, activityId is not being passed to the second query and I am not having any results. index=kubernetes lineOfBusiness=ifm component=chub useCase=C5 responsePayload | rex field=_raw "imsiActivationDate\"\:\"(?<imsiActivationDate>[^\"]*)" | rex field=_raw "simChangeDate\"\:\"(?<simChangeDate>[^\"]*)" | rex field=_raw "activity-id=(?<activityId>[^||]*)" | table activityId | map search="index=kubernetes lineOfBusiness=ifm component=ifm activity-id=*$activityId$*" | rex field=_raw "msisdn":"=(?<msisdn>[^=]*)" | dedup activityId, msisdn | table activityId msisdn
... View more