How can I fix Glimpse wires for a long time on an ASP.NET website?

I am using Glimpse v1.6.1 to fix performance issues on an ASP.NET website. The Glimpse head-up display breaks down request time into three categories: wire, server, and client. I see cases when the posting time is quite large (20 seconds), especially when loading the start page. What is the best way to drill wire time to find a bottleneck? I suspect that ASP.NET JIT compile time is included in posting time instead of server time, but I'm not sure.

There are several related questions already on StackOverflow with very useful answers, but none of them had exactly the answer I'm looking for:

+4
source share
1 answer

You may have a redirect. Glimpse includes the time used for any redirects during the "Wire" time. Server time refers only to the landing page after any redirects.

+1
source

All Articles