Disable graphs and logging

This commit is contained in:
George Lacey 2022-04-06 13:27:32 +01:00
parent 8e648a0a93
commit d190b7c2f7

View File

@ -25,19 +25,17 @@ window.addEventListener("DOMContentLoaded", function () {
$.getJSON(`/repo_list.json`, function (repo_list) {
repo_list.labels.forEach(function (repo_label) {
console.log("got list")
$.getJSON(`/repo/${repo_label}.json`, function (repo_json) {
console.log(`got ${repo_label}`)
inflateRepo(repo_json, repo_label, template, container);
})
});
})
$.getJSON("repo_daily.json", function (json) {
draw_time_graph("daily_backup_size", json.repos, json.dates, json.units);
});
$.getJSON("repo_monthly.json", function (json) {
draw_time_graph("monthly_backup_size", json.repos, json.dates, json.units);
});
// $.getJSON("repo_daily.json", function (json) {
// draw_time_graph("daily_backup_size", json.repos, json.dates, json.units);
// });
// $.getJSON("repo_monthly.json", function (json) {
// draw_time_graph("monthly_backup_size", json.repos, json.dates, json.units);
// });
}, false);