I still have a problem with having two panels displaying the same data over different timeframes copying each other.
Not sure why my last post was locked within hours, but OK.
So I edited the two panels to have different queries.
from(bucket: "weatherflow")
|> range(start: -48h)
|> filter(fn: (r) => r["_measurement"] == "obs_st" and r["_field"] == "stationPressure")
and
from(bucket: "weatherflow")
|> range(start: -6h)
|> filter(fn: (r) => r["_measurement"] == "obs_st" and r["_field"] == "stationPressure")
I had to still change the duration in the top right corner otherwise the graph only took 1/8 of the panel for the 6hr view.
This did the same thing and made both of the panels show the same data after the first auto refresh.
The two panels are not copies of each other they are both created from empty panels.
Any other thoughts?