I have a query that has multiple states represented in each log event how do i get stats based on the state values my logs look like this event 1 : x=true, y=true, z=false event 2 : x=false, y=false, z=true event 3: x=true, y= false, z=true i want track all the scenarios where the values are true for these stages(x, y, z) like. base_search AND (x=true or y=true or z=true) | stats count by x, y, z state count x 2 y 1 z 2 Is this possible to chart or do i have to log each state individually ?
... View more