I am selecting data Grouped By 2 different Tags,
However the results do not appear to be respecting the order of the GROUP BY.
I am executing something similar to:
SELECT * FROM "ServiceStats" WHERE Time > now() - 5m GROUP BY "host", "ServiceName"
The key here is the order of the 2 TAGs in the group by.
Regardless of which order I request the group by … by, I appear to always be returned “ServiceName” first and then “host”. This is making Grafana show its Table in the “wrong” order.
(as you can figure out this is a very minor issue, causing nothing but some cosmetic issues in Grafana)