From e0edc6e1139f487eecc90c58eaaca972c3ee02a8 Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Mon, 21 Oct 2019 19:27:46 +0200 Subject: [PATCH] only gatter a datapoint every 5 minutes This will allow us to display 144 data points on the main view which should be more than enough. --- sensors/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sensors/run.sh b/sensors/run.sh index 9caf63e..6f43245 100755 --- a/sensors/run.sh +++ b/sensors/run.sh @@ -4,5 +4,5 @@ export DJANGO_SETTINGS_MODULE=sensors.settings.production while : do ./manage.py collect - sleep 10 + sleep 600 done