This repository was archived by the owner on Dec 11, 2020. It is now read-only.
This repository was archived by the owner on Dec 11, 2020. It is now read-only.
Dashboard variable does not work in v7.0.0 #102
Open
Description
After upgrading to Grafana 7.0 and using the version 7.0.0, dasboard variable seems to be broken.
With Grafana 6.7 and plugin v5.4.1 I was able to run query like so
from(bucket: "netdata")
|> range(start: -20m)
|> filter(fn: (r) => r._measurement =~ /system.cpu$/)
|> group(columns:["hostname"])
|> distinct(column:"hostname")
|> keep(columns: ["_value"])
|> group()
in the dashboard settings > variables and using the text input "Query".
In the last release it seems that the query is not even executed, no error and no log.