i have a query where i am looking for multiple values with OR and then counting the occurrence with the stats the query is something like this index=**** ("value1") OR ("Value3") OR ... | stats count(eval(searchmatch("vlaue1"))) as value1, count(eval(searchmatch("vlaue2"))) as value2 now I just want to collect only those values which are found which mean there count is greater than 0. How can I achieve this where only stats of the values are displayed which are found in the events also search values are mostly ips, URLs , domains, etc Note: I'm making this query for dashboard
... View more