My query is : index="stage*" source="*record service*" | eval type=case(like(message, "%successful generated account%"),"Success Accounts", like(message, "%Granting failed Accounts%"),"Granting failed Accounts", like(message, "%Inbound setup failed accounts%"),"Inbound failed Accounts")| stats count as Results by type I am getting the result as: type Results Success Accounts 10 Granting failed Accounts 20 I am unable to get the results for the string Inbound failed Accounts as the results are zero. I need the output as type Results Success Accounts 10 Granting failed Accounts 20 Inbound failed Accounts 0 Please help me with the query for displaying the strings with zero count as well
... View more