.NET Resource Troubleshooting
If you've tried to diagnose the problem using those techniques and haven't found the problem, use the following troubleshooting approaches to find other ways to determine the root cause of the issue.
Step 1 - CPU saturated?
Is the CPU of the CLR saturated?
- Display the Tier Flow Map.
- Click the Nodes tab, and then click the Hardware tab.
- Sort by CPU % (current).
If the CPU % is 90 or higher, the answer to the question in Step 4 is Yes. Otherwise, the answer is No.
Yes – Go toStep 2
No – Review various metrics in the Metric Browser to pinpoint the problem.
In the left navigation pane, click
. Review these metrics in particular:- ASP.NET -> Application Restarts
- ASP.NET -> Request Wait Time
- ASP.NET -> Requests Queued
- CLR -> Locks and Threads -> Current Logical Threads
- CLR -> Locks and Threads -> Current Physical Threads
- IIS -> Number of working processes
- IIS -> Application pools -> <Business application name> -> CPU%
- IIS -> Application pools -> <Business application name> -> Number of working processes
- IIS -> Application pools -> <Business application name> -> Working Set
You have isolated the problem and don't need to continue with the rest of the steps below.
Step 2 - Significant garbage collection activity?
Is there significant garbage collection activity?
Yes – Go toStep 3.
No – Use your standard tools to produce memory dumps; review these to locate the source of the problem.
You have isolated the problem and don't need to continue with the rest of the steps below.
Step 3 - Memory leak?
Is there a memory leak?
Yes – Use your standard tools for troubleshooting memory problems. You can also review ASP.NET metrics; click
.No – Use your standard tools to produce memory dumps; review these to locate the source of the problem.
Whether you answered Yes or No, you have isolated the problem.