From: gregor herrmann Date: Mon, 28 Jan 2019 19:27:58 +0000 (+0100) Subject: switch from 5 minutes to 10 minutes X-Git-Url: https://git.toastfreeware.priv.at/chrisu/seepark.git/commitdiff_plain/a1a9d4bdd330504ce72e7f28225af5e4cdbfef8e switch from 5 minutes to 10 minutes - refresh interval - resolution for day average --- diff --git a/web/seepark_web.py b/web/seepark_web.py index b4c7749..d9c61c3 100644 --- a/web/seepark_web.py +++ b/web/seepark_web.py @@ -62,8 +62,9 @@ class OpenWeatherMap(db.Model): def calc_grouping_resolution(begin, end): """How many data points should be between the timestamps begin and end?""" # copied from munin/master/_bin/munin-cgi-graph.in + # except day: 300 -> 600 resolutions = dict( - day = 300, + day = 600, week = 1800, month = 7200, year = 86400, diff --git a/web/static/seepark_web.js b/web/static/seepark_web.js index da663a2..bc0f8c3 100644 --- a/web/static/seepark_web.js +++ b/web/static/seepark_web.js @@ -2,7 +2,7 @@ var api_base_url_sensors = '/api/1/sensor/type/Wassertemperatur?mode=consolidate var api_base_url_weather = '/api/1/openweathermap/city/3319578?mode=consolidated&format=c3'; var api_url_currentair = '/api/1/currentairtemperature'; var api_url_currentwater = '/api/1/currentwatertemperature'; -var refresh_interval = 5 * 60 * 1000; +var refresh_interval = 10 * 60 * 1000; function dayschart(element, title, days, xtickformat) { var chartdata;