Using MySQL datasource, I have this data:
+--------+-------+-----+
| class | value | max |
+--------+-------+-----+
| classA | 7 | 10 |
| classB | 6 | 13 |
| classC | 4 | 4 |
| classD | 3 | 7 |
+--------+-------+-----+
Using Gauge, how can I have the max column as the max of each gauge ?
I managed to set the maximum value of max as the max of all the gauge using Config from query results transformation. But what I want is that each gauge should have its own max.
I want something similar to this: (source from Grafana Play)
… with each gauge having its own max.
Thanks!
