Venkatesh Muniyandi
Venkatesh Muniyandi

Reputation: 5630

Understanding more about IIS Threads and monitoring them

I understand that IIS uses a thread from Threadpool to serve an incoming Http Request and releases the thread once after it completes serving the request.

I want to play around this to understand, how many threads are possible in an IIS server for a specific hardware configuration and how many threads it can handle concurrently, and more related scenarios.

I'm looking for the way/tools that will help visually monitor the thread allocation/usage @ IIS.

I appreciate Any pointers/suggestions?

Upvotes: 2

Views: 4585

Answers (1)

Ali Soltani
Ali Soltani

Reputation: 9927

To see how many threads are possible in an IIS server for specific hardware, Click on the server. Then on the right side pane, double click on ASP like this.

enter image description here

enter image description here

The ASP Threads Per Processor Limit property specifies the maximum number of worker threads per processor that IIS creates. The default value of Threads Per Processor Limit is 25. The maximum recommended value for this property is 100. To increase the value for the Threads Per Processor see this.

Upvotes: 3

Related Questions