How do i print the following
service status count
Gmdl 200 5
Aesp 200 13
abc 200 8
aesp 501 61
abc 501 22
Gmdl 400 11
as
200 400 501
gmdl 5 11 0
aesp 13 61 0
abc 8 0 22
Hi @spatt ,
instead using:
<your_search>
| stats count BY service status
use
<your_search>
| chart count OVER service BY status
Ciao.
Giuseppe