Correlate application logs (Coldfusion/J2EE) with IIS logs to debug client network problems - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T10:22:30Zhttp://stackoverflow.com/feeds/question/828037http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/828037/correlate-application-logs-coldfusion-j2ee-with-iis-logs-to-debug-client-networ0Correlate application logs (Coldfusion/J2EE) with IIS logs to debug client network problemsBob Albright2009-05-06T04:38:01Z2009-05-14T02:23:36Z
<p>I've seen some clients complaining about slowness of my website lately and I'm pretty sure that the problem is related to their network. I'd like to be able to justify this to myself more thoroughly and also be able to more proactively reach out to clients that appear to be having network issues before they come banging on my door.</p>
<p>If I was running ASP.Net I would try to use the <a href="http://msdn.microsoft.com/en-us/library/ms524861.aspx" rel="nofollow" title="Response.AppendToLog Method">Response.AppendToLog Method</a> and append a token so that I could tie back everything back to my custom application level logging (user, client, processing time, etc.). I can't seem to find a way to do that without ASP.net. I'm guessing it's built into ASP's ISAPI. My requests are going through IIS to JRun's ISAPI to Coldfusion (<em>.cfm/</em>.cfc files).</p>
<p>I'm most interested in knowing <b>how long it took the client to receive the content </b> not just the time it took to process the request.</p>
<p>If there are other places/information that I'm not considering that's worth looking at, please let me know. Perhaps I should log information from HTTP.sys somehow?</p>
<p>I know that I could set a cookie on every request and have that logged by IIS, I was just hoping there would be a better solution. </p>
<p>Thanks for your thoughts!</p>
http://stackoverflow.com/questions/828037/correlate-application-logs-coldfusion-j2ee-with-iis-logs-to-debug-client-networ/861274#8612740Answer by Benji York for Correlate application logs (Coldfusion/J2EE) with IIS logs to debug client network problemsBenji York2009-05-14T02:23:36Z2009-05-14T02:23:36Z<p>See <a href="http://code.google.com/p/jiffy-web/" rel="nofollow">Jiffy</a>. It "is an end-to-end real-world web page instrumentation and measurement suite."</p>
<p>The <a href="http://blip.tv/file/1018527" rel="nofollow">introductory video</a> gives a good overview.</p>