Update clear stats (#4324)

pull/4332/head
Louis Lam 4 months ago committed by GitHub
parent 25cb78796a
commit 9356e7dd4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1491,6 +1491,14 @@ let needSetup = false;
log.info("manage", `Clear Statistics User ID: ${socket.userID}`);
await R.exec("DELETE FROM heartbeat");
await R.exec("DELETE FROM stat_daily");
await R.exec("DELETE FROM stat_hourly");
await R.exec("DELETE FROM stat_minutely");
// Restart all monitors to reset the stats
for (let monitorID in server.monitorList) {
await restartMonitor(socket.userID, monitorID);
}
callback({
ok: true,

Loading…
Cancel
Save