I have two searches that work fine, but I want to show them in one dashboard. I have these two
1-....search....:
|stats count values(Message.DocumentId) as "Doumentid" by cbatchid
2-....search....
| stats count(eval('message.information'="Sent to ESB")) as Sent,count(eval('message.information'!="Sent to ESB")) as NOTSENT by message.x-cak-messageid | eval Status=if(Sent=1,"OK","NOK")
Index, source etc. are the same, the searches only contain which index en source to search in. How can I combine the two ?
... View more