I have success and failure metrics as follows:
A.B.p1.success
A.B.p3.success
A.B.p4.success
...
A.B.p1.failure
A.B.p2.failure
A.B.p4.failure
...
I have in total ~30 persons, and I want to show the each person's success rate as calculated by:
alias(asPercent(A.B.p1.success,sumSeries(A.B.p1.success,A.B.p1.failure)), 'p1')
The problem I have:
1) If I hard-code all the persons in each row, it exceeds the max row Grafana allowed, andd I want to plot them on the same graph
2) If there a way I can do it by a Grafana function?
Thanks in advance!