Calculate request speed/connection speed? in a production environment with heavy ajax

2012-02-07 Thread Brown, Berlin [GCG-PFS]
What is the best way to calculate the connection speed or request speed for a wicket application from the server side? I can use the request process onBeginRequest and onEndRequest, that will give me the time it takes to process a request on the server, but I am still missing: I need: 1.

Re: Calculate request speed/connection speed? in a production environment with heavy ajax

2012-02-07 Thread MichaƂ Golichowski
A servlet filter would probably help here. You can both measure the request time there and also wrap the request / response streams in some custom stream that will count the number of bytes transferred. On Tue, Feb 7, 2012 at 10:39 PM, Brown, Berlin [GCG-PFS] berlin.br...@primerica.com wrote: