1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-03-09 15:40:18 +00:00

Added CIRA+LMS traffic counters

This commit is contained in:
Ylian Saint-Hilaire 2021-05-05 10:59:47 -07:00
parent bc72a553e2
commit 3590290020
73 changed files with 149 additions and 190 deletions

View file

@ -352,7 +352,11 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
localRelayIn: {},
localRelayOut: {},
AgentCtrlIn: 0,
AgentCtrlOut: 0
AgentCtrlOut: 0,
LMSIn: 0,
LMSOut: 0,
CIRAIn: 0,
CIRAOut: 0
}
obj.getTrafficStats = function () { return obj.trafficStats; }