Re: [nodejs] How to count concurrent requests to my server?

2012-07-11 Thread Ted Young
just to double check, are you actually calling response.end() in the example you are running? Ted On Jul 11, 2012, at 6:06 PM, mscdex wrote: On Jul 11, 10:15 am, Domenic Denicola dome...@domenicdenicola.com wrote: Neither end nor close are ever emitted. Ok, then

[nodejs] How to count concurrent requests to my server?

2012-07-10 Thread Domenic Denicola
I am trying to create a mini dashboard for my server that shows number of unfinished requests. (BTW if there's a better term for that let me know.) Here is what I have, but I don't think it's catching all the response finishes: server.server.on(request, function (request, response) {