我正在尝试使用以下查询在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
两个都不起作用。
这个想法是:对于每种类型,我想要一个堆叠的条形图,上面堆叠着不同状态的计数。如何更改查询以获取堆积的条形图?