Good evening,
i tried to visualization my raspberrypi.
For that I tried to show the temperature. The output from the command(cat /sys/class/thermal/thermal_zone0/temp) is 59887 now I try to /1000 but where this is to configurat.
from(bucket: "pihole")
|> range(start: v.timeRangeStart, stop: v.timeRangeStop)
|> filter(fn: (r) => r["_measurement"] == "cpu_temperature")
|> aggregateWindow(every: v.windowPeriod, fn: mean, createEmpty: false)
|> yield(name: "mean")
this is my query.
MFG