Created
August 2, 2017 06:00
-
-
Save leeuwte/71f89fa9c8a31800e0b61862be0156d7 to your computer and use it in GitHub Desktop.
Query min/max temp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Graph type: 'Table' | |
A: | |
SELECT max("value") FROM "°C" WHERE "entity_id" = 'outside' AND $timeFilter GROUP BY time(24h) fill(null) | |
B: | |
SELECT min("value") FROM "°C" WHERE "entity_id" = 'outside' AND $timeFilter GROUP BY time(24h) fill(null) | |
In tab 'Time range' | |
change 'Override relative time' to Last 30d (or wathever suits you) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment