bigbluebutton-Github/bigbluebutton-html5/imports/utils/stats.js
2020-05-14 10:40:31 -03:00

238 lines
5.1 KiB
JavaScript

import logger from '/imports/startup/client/logger';
const STATS = Meteor.settings.public.stats;
const STATS_LENGTH = STATS.length;
const STATS_INTERVAL = STATS.interval;
const STATS_LOG = STATS.log;
const stop = callback => {
logger.debug(
{ logCode: 'stats_stop_monitor' },
'Lost peer connection. Stopping monitor'
);
callback(clearResult());
return;
};
const isActive = conn => {
let active = false;
if (conn) {
const { connectionState } = conn;
const logCode = 'stats_connection_state';
switch (connectionState) {
case 'new':
case 'connecting':
case 'connected':
case 'disconnected':
active = true;
break;
case 'failed':
case 'closed':
default:
logger.warn({ logCode }, connectionState);
}
} else {
logger.error(
{ logCode: 'stats_missing_connection' },
'Missing connection'
);
}
return active;
};
const collect = (conn, callback) => {
let stats = [];
const monitor = (conn, stats, iteration) => {
if (!isActive(conn)) return stop(callback);
conn.getStats().then(results => {
if (!results) return stop(callback);
let inboundRTP;
let remoteInboundRTP;
results.forEach(res => {
switch (res.type) {
case 'inbound-rtp':
inboundRTP = res;
break;
case 'remote-inbound-rtp':
remoteInboundRTP = res;
break;
default:
}
});
if (inboundRTP || remoteInboundRTP) {
if (!inboundRTP) {
logger.debug(
{ logCode: 'stats_missing_inbound_rtc' },
'Missing local inbound RTC. Using remote instead'
);
}
stats.push(buildData(inboundRTP || remoteInboundRTP));
while (stats.length > STATS_LENGTH) stats.shift();
const interval = calculateInterval(stats);
callback(buildResult(interval, iteration));
}
setTimeout(monitor, STATS_INTERVAL, conn, stats, iteration + 1);
}).catch(error => {
logger.debug(
{
logCode: 'stats_get_stats_error',
extraInfo: { error }
},
'WebRTC stats not available'
);
});
};
monitor(conn, stats, 1);
};
const buildData = inboundRTP => {
return {
packets: {
received: inboundRTP.packetsReceived,
lost: inboundRTP.packetsLost
},
bytes: {
received: inboundRTP.bytesReceived
},
jitter: inboundRTP.jitter
};
};
const buildResult = (interval, iteration) => {
const rate = calculateRate(interval.packets);
return {
iteration: iteration,
packets: {
received: interval.packets.received,
lost: interval.packets.lost
},
bytes: {
received: interval.bytes.received
},
jitter: interval.jitter,
rate: rate,
loss: calculateLoss(rate),
MOS: calculateMOS(rate)
};
};
const clearResult = () => {
return {
iteration: 0,
packets: {
received: 0,
lost: 0
},
bytes: {
received: 0
},
jitter: 0,
rate: 0,
loss: 0,
MOS: 0
};
};
const diff = (single, first, last) => Math.abs((single ? 0 : last) - first);
const calculateInterval = (stats) => {
const single = stats.length === 1;
const first = stats[0];
const last = stats[stats.length - 1];
return {
packets: {
received: diff(single, first.packets.received, last.packets.received),
lost: diff(single, first.packets.lost, last.packets.lost)
},
bytes: {
received: diff(single, first.bytes.received, last.bytes.received)
},
jitter: single ? first.jitter : last.jitter
};
};
const calculateRate = (packets) => {
const { received, lost } = packets;
const rate = (received > 0) ? ((received - lost) / received) * 100 : 100;
if (rate < 0 || rate > 100) return 100;
return rate;
};
const calculateLoss = (rate) => {
return 1 - (rate / 100);
};
const calculateMOS = (rate) => {
return 1 + (0.035) * rate + (0.000007) * rate * (rate - 60) * (100 - rate);
};
const logResult = (id, result) => {
if (!STATS_LOG) return null;
const {
iteration,
loss,
jitter
} = result;
// Avoiding messages flood
if (!iteration || iteration % STATS_LENGTH !== 0) return null;
const duration = STATS_LENGTH * STATS_INTERVAL / 1000;
logger.info(
{
logCode: 'stats_monitor_result',
extraInfo: {
id,
result
}
},
`Stats result for the last ${duration} seconds: loss: ${loss}, jitter: ${jitter}.`
);
};
const monitorAudioConnection = conn => {
if (!conn) return;
logger.debug(
{ logCode: 'stats_audio_monitor' },
'Starting to monitor audio connection'
);
collect(conn, (result) => {
logResult('audio', result);
const event = new CustomEvent('audiostats', { detail: result });
window.dispatchEvent(event);
});
};
const monitorVideoConnection = conn => {
if (!conn) return;
logger.debug(
{ logCode: 'stats_video_monitor' },
'Starting to monitor video connection'
);
collect(conn, (result) => {
const event = new CustomEvent('videostats', { detail: result });
window.dispatchEvent(event);
});
};
export {
monitorAudioConnection,
monitorVideoConnection
}