Why ASP.NET requests The current performance counter is always higher. ASP.NET/sec counter application requests

I am tracking a web application and I am confused by some of asp.net performance counters.

Can someone explain the difference between ASP.NET Current Counter requests and ASP.NET application / sec requests?

+5
source share
1 answer

ASP.NET Current Request Counter displays the current number of requests processed or processed by the server.

ASP.NET Applications / Sec measures the server throughput by how many requests the server can process in one second.

MSDN : http://msdn.microsoft.com/en-us/library/fxk122b4.aspx

PerfMon " " .

alt text

+9

All Articles