statistic: oops.

This commit is contained in:
Yonle 2024-04-06 14:44:16 +07:00
parent 9621855efb
commit 06609b4370

View File

@ -72,7 +72,7 @@ server.on('request', (req, res) => {
res.write(`\nI have ${wss.clients.size} clients currently connected to this bouncer${(process.env.CLUSTERS || config.clusters) > 1 ? " on this cluster" : ""}.\n`);
res.write(`\nAll bouncer activities in total:`);
res.write(`\n- raw_rx: ${globalStat.rx}`);
res.write(`\n- raw_rx: ${globalStat.raw_rx}`);
res.write(`\n- rx: ${globalStat.rx}`);
res.write(`\n- tx: ${globalStat.tx}`);
res.write(`\n- fail: ${globalStat.f}`);