I’ve got this query :
SELECT hostmacro.value as macro, count(hostmacro.value) as compte FROM zabbix.hostmacro group by hostmacro.value;
I want to use the first column’s row values of the query (macro) as the series’s names for my Bar Gauge and use the 2nd column values (compte) as the value for each series. Right now, i’m not getting the expected result :
If i switch to a table view, i can see the 2 columns like this :
Anyone knows how to do this or if it’s possible with the new panel?
Thanks!