Hey there, i have a curious problem
. As soon as i start to use the global timepicker variables in a public dashboard, the dashboard crashes
While this works in the public version
from(bucket: “Meh Bucket”)
|> range(start: -30d})
|> filter(fn: (r) => (r._measurement == “test” and r._field == “test1”))
|> aggregateWindow(every: $__interval, fn: mean)
this does not
from(bucket: “Meh Bucket”)
|> range(start: ${__from:date}, stop: ${__to:date})
|> filter(fn: (r) => (r._measurement == “test” and r._field == “test1”))
|> aggregateWindow(every: $__interval, fn: mean)
In the non-public version, the dashboard works fine with both prompts
Any idea why?