diff --git a/res/static/script/Toolbar.js b/res/static/script/Toolbar.js
index 3f89f3c..e84c945 100644
--- a/res/static/script/Toolbar.js
+++ b/res/static/script/Toolbar.js
@@ -249,7 +249,7 @@ var DetailsWindow = {
updateGraph: function(fileID) {
var that = this;
console.log("updating graph "+fileID);
- $.get(apiEndpoint+"/file/" + fileID + "/timeseries", function(response){
+ $.get(apiEndpoint+"/file/" + fileID + "/timeseries?interval=60", function(response){
console.log(response);
if (response.success) {
that.graph.data.labels = response.labels;
diff --git a/res/template/admin.html b/res/template/admin.html
index 7b75ba4..f9a30cb 100644
--- a/res/template/admin.html
+++ b/res/template/admin.html
@@ -20,7 +20,7 @@