From e0a237af52f0ef38e10f14cd57cda8dfb4bd73b4 Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Thu, 4 Apr 2019 15:53:50 -0700 Subject: [PATCH] Now fetch 30 days of server stats. --- views/default-min.handlebars | 2 +- views/default.handlebars | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/views/default-min.handlebars b/views/default-min.handlebars index 1ddc91bd..afd8d00a 100644 --- a/views/default-min.handlebars +++ b/views/default-min.handlebars @@ -1 +1 @@ - MeshCentral
{{{title}}}
{{{title2}}}

{{{logoutControl}}}

 

\ No newline at end of file + MeshCentral
{{{title}}}
{{{title2}}}

{{{logoutControl}}}

 

\ No newline at end of file diff --git a/views/default.handlebars b/views/default.handlebars index 360a4569..3d150f6d 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -7273,7 +7273,7 @@ } }; - function refreshServerTimelineStats(stats) { meshserver.send({ action: 'servertimelinestats', hours: 24 }); } + function refreshServerTimelineStats(stats) { meshserver.send({ action: 'servertimelinestats', hours: 24 * 30 }); } function pastDate(hours) { var t = new Date(); t.setTime(t.getTime() - (60 * 60 * 1000 * hours)); return t; } function setServerTimelineStats(stats) { serverTimelineStats = stats; updateServerTimelineStats(); } function addServerTimelineStats(stats) {