I have an ``` index=xyz data.id=1 ``` which gives me list of unique id's [1,2,3,4,5]Not sure how to store the above result to get it used for another query. | stats count by uniqueId Now I want to use the list above and get the data from another query and find the values Query 2 will return 1 -> good 2 -> Bad 3 -> Neural / etc Index2 I want to use the result [1,2,3,4] for the next query which will give me some extra information based on the ID only. Eg: Query 2 has index=xyz data.msg.id=1, data.xyz.val=good How can we do that? I am trying something like this index="test"
actionSubCateg IN (xyz)
landingPageURL="xyz/?search=game_gupta"
data.msg.queryName="query FindBtf"
| table data.msg.id
Find in second query the results of top
[ search index="test"
actionSubCateg="game"
| rename data.DATA.id as id
| fields id, scope
| table id, scope]
... View more