SELECT patchsession,
count(*) as Baseline,
COUNT (*) filter(where exempted='SKIP_L2_APPROVAL') AS SKIP_L2_APPROVAL
from patchtracking P, cycle C
where C.cyclename=$cyclename and P.patch_id=C.id
group by patchsession
Is it possible to query it so that it display this:
UAT
------------ ----
Baseline 78
Skipped with L2 Approval 14
Any idea how to do this ?, We have a table which always ends up with one row , but with 50 columns
Can the columns become rows ?
we are using logs in Metric to pull all columns of the record
same situation here, I solved this by using transformation -> reduce ->mode: series to rows, calculation: total
This Example Dashboard helped me a lot figuring out whats going on in case anyone else struggles with this kind of basic cluelessness.