After I added a graph displaying the temperature over time and noticing some inconsistency I am still not entirely convinced this is what I want 
It looks like i get the mean over all CPU cores (good), but also over all measurements retrieved by $timeFilter. Is this correct? Because when I look at the raw data the values displayed in Grafana seem to be a moving average over $timeFilter.
How can I get the mean/average over a single value for all cores and then display this over time? The last value to the right of the graph should always be the current average of the temperature of all cores.
To illustrate this is the query as defined at the moment:
As code:
SELECT mean("value") / 10 - 273.15 FROM "temperature" WHERE ("resource" = 'cputemp' AND "hostname" =~ /^$host/) AND $timeFilter GROUP BY time($interval)
The series in influx are are set up like this:
temperature,hostname=freenas-pmh_local,instance=0,resource=cputemp
temperature,hostname=freenas-pmh_local,instance=1,resource=cputemp
temperature,hostname=freenas-pmh_local,instance=10,resource=cputemp
temperature,hostname=freenas-pmh_local,instance=11,resource=cputemp
temperature,hostname=freenas-pmh_local,instance=12,resource=cputemp
temperature,hostname=freenas-pmh_local,instance=13,resource=cputemp
temperature,hostname=freenas-pmh_local,instance=14,resource=cputemp
temperature,hostname=freenas-pmh_local,instance=15,resource=cputemp
temperature,hostname=freenas-pmh_local,instance=2,resource=cputemp
temperature,hostname=freenas-pmh_local,instance=3,resource=cputemp
temperature,hostname=freenas-pmh_local,instance=4,resource=cputemp
temperature,hostname=freenas-pmh_local,instance=5,resource=cputemp
temperature,hostname=freenas-pmh_local,instance=6,resource=cputemp
temperature,hostname=freenas-pmh_local,instance=7,resource=cputemp
temperature,hostname=freenas-pmh_local,instance=8,resource=cputemp
temperature,hostname=freenas-pmh_local,instance=9,resource=cputemp
So what I try to get is the mean over the 16 measurements at a single point of time. And then a graph over time from that.
Thanks,
Patrick