I am trying to get repeating panels for the sensors that report temperature.
The InfluxDB query is:
SELECT last("value") FROM "autogen"."temperature" WHERE ("deviceName" =~ /^$devices$/) AND $timeFilter GROUP BY time($__interval) fill(previous)
The variable is declared as:
SHOW TAG VALUES WITH KEY = "deviceName"
Since it seems it’s impossible to hide panels which no data, I was thinking maybe there is a way for me to set up the variable to only have temperature values but I am not sure how to go about it. Any idea? Or maybe tags that have an attribute of temperature?