we are trying to do logging on the request time to check the application processing time and the request output network time
we first try to time the request processing by overriding WebRequestCycle#onBeginRequest, #onEndRequest but it seems the processing time is the same as the request time logged at tomcat, i.e. it includes both application+request output network time can i log the application time, isolating the request output network time? i check that i am using IRequestCycleSettings.RenderStrategy REDIRECT_TO_BUFFER, by which the IRequestCycleSettings.RenderStrategy class javadoc says: > > * bufferResponse (defaults to true) - True if the application should > buffer responses. This > * does require some additional memory, but helps keep exception displays > accurate because the whole > * rendering process completes before the page is sent to the user, thus > avoiding the possibility of > * a partially rendered page. > so we can time the whole wicket rendering process (the application logic) before sending out to the client? can anyone point out where i can add the timing by myself? if wicket does not have an easy extension point here, i can just go to the code and compile for my use myself many thanks -- View this message in context: http://www.nabble.com/request-time-logging-with-application-and-network-time-disguished-tp22530747p22530747.html Sent from the Wicket - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
