Hi,
Can you help me with the search to extract the following? The offerId may come in the log as offerId="ABC_79|ABC_80|ABC_81|ABC_56"
separated by pipes (if there are multiple records) or just offerId="ABC_79"
(if there is just one offer).
So how do I extract the offerId's to a new field offerName?
The final output would be:
OfferName:
ABC_79
ABC_80
ABC_81
ABC_56
Thanks.
Something like this
your base search | eval offerName=split(offer_id,"|")
OR
your base search | makemv offerId delim="|"
Something like this
your base search | eval offerName=split(offer_id,"|")
OR
your base search | makemv offerId delim="|"
Perfect! It worked . Thanks for your time 🙂