About the IIS site request queue length?

aspx 6 Reputation points
2021-12-27T08:19:18.123+00:00

OS: Windows Server 2016 Standard
IIS: Version 10.0.14393.0
Web Sites: WebIISQueueTest .NetFramework4.5 Asp.net mvc

Question 1: By which performance counter does the site's request queue length be monitored?

Question 2: The request queue length is set but can be exceeded, why not return 503.

Performance counters HTTP Service Request Queues (CurrentQueueSize): The request count in the IIS queue on windows server 2016

The CurrentQueueSize property always has a zero value , why ?

application pool img: https://i.stack.imgur.com/k8tsS.png

160468-iis-app-pool.png

Internet Information Services
ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,509 questions
C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
11,015 questions
ASP.NET API
ASP.NET API
ASP.NET: A set of technologies in the .NET Framework for building web applications and XML web services.API: A software intermediary that allows two applications to interact with each other.
343 questions
0 comments No comments
{count} votes

12 answers

Sort by: Most helpful
  1. aspx 6 Reputation points
    2021-12-28T04:05:24.897+00:00

    my maximum worker processes always set to 1

    @Bruce Zhang-MSFT

    https://i.stack.imgur.com/cXVlm.png


  2. aspx 6 Reputation points
    2021-12-29T03:35:56.69+00:00

    UP........


  3. aspx 6 Reputation points
    2021-12-29T10:26:42.857+00:00

    The same number of concurrent client requests and same IIS configuration

    C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config\machine.config , <processModel autoConfig="true"/>
    C:\Windows\System32\inetsrv\config\applicationHost.config , <serverRuntime appConcurrentRequestLimit="5000" />

    win10-iis ver: 10.0.19041.1415 , CurrentQueueSize works. RejectedRequest works
    win2016-iis ver: 10.0.14393.0 , CurrentQueueSize doesn't work. RejectedRequest works
    win2008-iis ver: 7.5.7600.16385 , CurrentQueueSize doesn't work . RejectedRequest works

    BUG??


  4. aspx 6 Reputation points
    2021-12-30T07:29:09.613+00:00

    The key question is : "still waiting for connect in the queue" ,the queue was full, so rejected, How do I monitor it by performance counter????


  5. aspx 6 Reputation points
    2022-01-04T02:36:25.46+00:00

    please help answer, up......

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.