Is there a way in node.js
to get the number of open connections and number of requests per second from a http server?
Assume the following simple server:
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end("Hello World!");
}).listen(80);
Thanks.