Hey all, with the Grafana/influx/untelegraf combo, you all seem to be doing better than me .. And I'm wondering if you might be able to assist where I'm going wrong...
I can't seem to get the HDTemp graph to work. I used Viaduct's HDTemp script to push some data in to influx, which worked brilliantly!, as well as manually pushing in my own data, which also worked fine. But trying to grab that data back out is where it all fails ..
What the Table looks like:
> select * from HDTemp
name: HDTemp
time /dev/sda /dev/sdc /dev/sdh host region
---- -------- -------- -------- ---- ------
1484224866545880159 40 kryten au-west
1484225718567102466 38 kryten us-west
1484225720589067936 40 kryten us-west
And I've managed to get what I believe to be "the correct data" ..
> select "/dev/sda" from "HDTemp"
name: HDTemp
time /dev/sda
---- --------
1484224866545880159 40
But I can't seem to get it inputted correctly in to Grafana .. I've tried a lot of config combinations ..
My current (failing) entry looks like;
http://imgur.com/3Jtimyl
Which translates to
SELECT "/dev/sda" FROM "HDTemp" WHERE $timeFilter GROUP BY time(5m) fill(0)
but no matter what I try, I get the error: "InfluxDB Error: Undefined"
anything at all you guys can suggest would be amazing ..