I have two prometheus queries (sum over 24h) , the outcome is an number:
Query B
sum(increase(mule_statistics_totaleventsreceived{application=“y”,group=“prod”,flow=“y1”}[24h])) by (application,flow)
Query B
sum(increase(mule_statistics_totaleventsreceived{application=“x”,group=“prod”,flow=“x1”}[24h])) by (application,flow) and a second query:
Time | Application | flow | Value #A | Value #B
— | — | —
2020-01-20 | x | x1 | - | 10
2020-01-20 | y | y1 | 11 | -
2020-01-21 | x | x1 | - | 16
2020-01-21 | y | y1 | 13 | -
And I want a graph with two bars per day, is this possible? And how should I do that?