Hey guys -
I’m currently running this query here to figure out the message set order when our service is not returning 200.
SELECT count("ui_status") From "crosslayer" WHERE $timeFilter AND ui_status != '200' Group By dmz1_mess
which ends up looking like this:
Time | Message set | Failures
---------------------------------------------------
XXX | message set 1 | 10
XXX | message set 2 | 60
XXX | message set 3 | 60
which is working great but I dont have any context to the rest of the data.
What I would like to see is how many times total the message set appeared in comparison to the count of the failures.
Time | Message set | Failures | Total
-------------------------------------------------------------
XXX | message set 1 | 10 | 1000
XXX | message set 2 | 60 | 60
XXX | message set 3 | 60 | 5000
Is this particular example, I’m much more interested in digging into “message set 2”.
I tried doing two message set tables side by side, one for failures and one for total passed, but there are 100’s message sets and they are in a series of bits and they are pretty hard to compare.
Is there any thing I can do?
Thanks,
Nef