使用MySQL在Grafana中创建堆栈栏

时间:2018-10-18 20:13:18

标签: mysql grafana

我正在尝试使用以下查询在Grafana中创建堆叠的条形图(并且尚未在“显示”标签中选择“堆叠”) 根据这里的建议https://community.grafana.com/t/creating-stacked-bar-charts-on-grafana-using-data-from-sql-server/8200/5

我尝试过

Select now()-1 as time,  type as metric , count(<id status?>) from myTable group by time, type

Select now()-1 as time,  type as metric , count(status) from myTable group by time, type

两个都不起作用。

这个想法是:对于每种类型,我想要一个堆叠的条形图,上面堆叠着不同状态的计数。如何更改查询以获取堆积的条形图?

0 个答案:

没有答案