Hello,
Openhabian4.3.5 (openhabian-raspios64-latest-202502221936-crc837e760e.img)
Raspberry 5 4GB
Grafana 11.6.1
InfluxDB 2.7.11
I had to move my openhabian from a pi3 to a pi5 because the pi3 was getting slower and slower.
After a few days and several attempts, the whole thing is running.
I used the Flux-query for the connection between Grafana and InfluxDB2.
But now I see ‘value Street_Humidity’ as the name/title of my graphic in Grafana and would like to change this.
from(bucket: "openhabian")
|> range(start: v.timeRangeStart, stop: v.timeRangeStop)
|> filter(fn: (r) => r["_measurement"] == "Street_Humidity")
|> filter(fn: (r) => r["_field"] == "value")
|> aggregateWindow(every: v.windowPeriod, fn: mean, createEmpty: false)
|> yield(name: "mean")```
Thank you