How to ASP.NET’s “Request Wait Time” be 0 when “Requests Queued” is consistently in the hundreds

asp.netperformance-monitoring

I'm curious why Performance Monitor claims I always have a few hundred ASP.NET 3.5 requests "queued". The "Requests Queued" "ASP.NET v2.0.50727" performance counter is hovering in the few-hundred range despite the fact "Request Wait Time" is consistently 0. If each and every request never waits even a fraction of a millisecond, how could it be in the queue?

The "ASP.NET Apps v2.0.50727" counters for "Requests In Application Queue" and "Request Wait Time" are always 0.

Best Answer

In PerfMon, make sure your the .NET version for your counters is the same as the version your application uses.

It seems you are using .NET 3.5 for your application, but you're looking at .NET 2.0 counters.