Hello so I'm using the following section- however I'm not sure how to actually search for the results that I want- I'd like to add this phrase to the search: [| search index=host_index AND "phrase 1" AND "phrase 2" | stats count by Host_Pairs]. I've tried adding it to the end but that doesn't seem to work. | makeresults | eval _raw="Host,Pair
hostA1,1
hostA2,1
hostB1,2
hostB2,2
hostC1,3
hostC2,3"
| multikv forceheader=1 | table Host Pair
| stats count values(Host) AS Host_Pairs BY Pair
| eval Pair="Pair".Pair.": ".mvjoin(Host_Pairs, " & ")
| table Pair count
... View more