Skip to content

Instantly share code, notes, and snippets.

@kantharia
Forked from mekwall/bandwidth.js
Created June 15, 2018 07:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kantharia/26bb219c461cbd8f7c34f6d05f6554d4 to your computer and use it in GitHub Desktop.
Save kantharia/26bb219c461cbd8f7c34f6d05f6554d4 to your computer and use it in GitHub Desktop.
How to measure bandwidth of a server in Node.js (and some other statistics)
const net = require("net");
var server = net.createServer(function (c) {
var oldWrite = c.write;
c.write = function(d) {
if (!Buffer.isBuffer(d)) {
d = new Buffer(d);
}
oldWrite.call(this, d);
server.bytesSent += d.length;
};
c.on('data', function(d){
server.bytesReceived += d.length;
});
c.write('Hello world!\r\n');
c.pipe(c);
c.end();
});
server.bytesReceived = 0;
server.bytesSent = 0;
server.listen(3000);
var units = ["B", "kB", "MB", "TB"];
function simplifiedUnits(input) {
var unit = units[0];
var i = 0;
while (input > 1024 && ++i) {
unit = units[i];
input /= 1024;
}
return Math.round(input) + " " + unit;
}
var time = process.hrtime();
setInterval(function (){
process.stdout.write('\u001B[2J\u001B[0;0f');
var diff = process.hrtime(time)[0] + process.hrtime(time)[1]/1000000000;
var bpsSent = Math.round(server.bytesSent/diff) || 0;
var bpsReceived = Math.round(server.bytesReceived/diff) || 0;
console.log("Running node.js %s on %s-%s", process.version, process.platform, process.arch);
console.log("Memory usage: %s", simplifiedUnits(process.memoryUsage().rss));
console.log("Uptime: %ds", Math.round(process.uptime()));
console.log("Open connections: %d", server.connections);
console.log("In: %s (%s/s)", simplifiedUnits(server.bytesReceived), simplifiedUnits(bpsReceived));
console.log("Out: %s (%s/s)", simplifiedUnits(server.bytesSent), simplifiedUnits(bpsSent));
}, 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment