Skip to content

Commit

Permalink
calculate average uploadvolume
Browse files Browse the repository at this point in the history
  • Loading branch information
robotastic committed Aug 30, 2024
1 parent e15195f commit edf99e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 0 additions & 1 deletion backend/controllers/systems.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ exports.contact_system = async function (req, res) {
return;
}

console.log(user);
let message = "Thank you for contributing a feed to OpenMHz. A user has sent in a message about this feed:\n\n-------------------------------\n"
message = message + "User Name: " + req.body.name + "\n";
message = message + "User Email: " + req.body.email + "\n-------------------------------\n";
Expand Down
3 changes: 3 additions & 0 deletions backend/sys_stats.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,13 @@ var spots = (24 * 60) / timePeriod; // the number of spots needed to keep track

async function updateActiveSystems() {
// Go through all of the Systems
let siteTotal = 0;
for await (let item of System.find()) {
// go through all the systems
// if you have received some calls during that last period, make the system active
if ((callTotals[item.shortName] != undefined) && (callTotals[item.shortName] > 0)) {
item.active = true;
siteTotal += callTotals[item.shortName];
item.callAvg = callTotals[item.shortName] / timePeriod;
item.lastActive = new Date();
} else {
Expand All @@ -32,6 +34,7 @@ async function updateActiveSystems() {
}*/
await item.save();
};
console.log("Site average uploads per minute: " + siteTotal / timePeriod);
}

exports.initStats = async function () {
Expand Down

0 comments on commit edf99e1

Please sign in to comment.