Vonage / Grafana_Status_panel

A panel plugin for Grafana to monitor multiple parameters at once
Other
178 stars 108 forks source link

Metrics that lead to multiple measurements don't work #108

Open stolzda opened 6 years ago

stolzda commented 6 years ago

Using InfluxDB.

If I write a query like:

SELECT last("used_percent") FROM "disk" WHERE ("host" = '$host') GROUP BY "device" fill(null)

or (with a multi-value variable $disk):

SELECT last("used_percent") FROM "disk" WHERE ("host" = '$host') AND ("device" = '$disk') fill(null)

I should get between 0 and many measurements. However, in Status Panel I don't see any measurements at all.

Not sure if this is a bug or a feature request.