From 06609b43707bec5350b54d2702e871a89ccc9d6c Mon Sep 17 00:00:00 2001 From: Yonle Date: Sat, 6 Apr 2024 14:44:16 +0700 Subject: [PATCH] statistic: oops. --- http.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http.js b/http.js index 006ed33..ce086f9 100644 --- a/http.js +++ b/http.js @@ -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}`);