bigbluebutton-Github/bigbluebutton-html5/imports/api/connection-status/server/methods/voidConnection.js
2022-04-08 14:27:35 +00:00

10 lines
286 B
JavaScript

import { PrometheusAgent, METRIC_NAMES } from '/imports/startup/server/prom-metrics/index.js'
// Round-trip time helper
export default function voidConnection(previousRtt) {
if (previousRtt) {
PrometheusAgent.observe(METRIC_NAMES.METEOR_RTT, previousRtt/1000);
}
return 0;
}