todo: introduction to thread pool exhaustion link
On this video, Mike Rousos show some dotnet CLI tools that are good to investigate possible thread pools exhaustion problems on net core apps.
Mainly he used dotnet-counters
tool in order to get details about the dotnet projet.
Then after that he analised the results where he noticed that the Thread Pool was increasing in a way that is not normal, and sequentially.
*Ideally the Thread pool should be steady, which shows that the application is being able to re use the same thread pools and serving all requests/process properly"
Other links
Todo: more details about thread pools