Blog Post

IIS Support Blog
4 MIN READ

Memory dumps at process termination caused by second-chance exception

Pingulea's avatar
Pingulea
Icon for Microsoft rankMicrosoft
Mar 25, 2021

The following two procedures guide on how to properly collect a memory dump to study a process crash. This post complements my article about how exceptions are handled and how to collect memory dumps to study them.

 

Both tools below - ProcDump and DebugDiag - work similarly: they can attach themselves as debuggers to a process, then monitor and log exceptions for that process. Optionally, these tools can collect a memory dump for the monitored process under certain conditions - such as when specific exceptions occur or on process crash.

Both tools need administrative rights to be run.

DebugDiag is the preferred tool, since it automates some steps, adds more explicit context, and includes automated memory dump analysis capabilities too.

 

Using the command-line ProcDump

 

ProcDump does not require installation. But one needs to be specific about the PID to which it is attaching. That PID needs to be determined prior to starting ProcDump. This may be tricky then the respective process is crashing and restarting frequently, with a different PID; such as when Asp.Net apps are causing their w3wp.exe to crash and restart. If the w3wp.exe is crashing very fast, then it is advisable to use the DebugDiag method.

 

  1. Download the tool and copy it on a disk folder, for example D:\Temp-Dumps\
    https://docs.microsoft.com/en-us/sysinternals/downloads/procdump
     
  2. Open an administrative console from where to run commands.
    Navigate to the disk folder above (D:\Temp-Dumps\).
     
  3. Find the process ID, the PID, of the IIS w3wp.exe worker process executing your application.
    Use the AppCmd IIS tool to list processes for application pools:
    D:\Temp-Dumps> C:\Windows\System32\InetSrv\appcmd.exe list wp
  4. Execute the following command to collect dump(s):
    D:\Temp-Dumps> procdump.exe -accepteula -ma -e [PID]
    You may want to redirect the console output of ProcDump to a file, to persist the recording of the encountered exceptions:
    D:\Temp-Dumps> procdump.exe -accepteula -ma -e [PID] > Monitoring-log.txt
    Replace [PID] with the actual Process ID integer number identified at the step 2.
    Please make sure that there is enough disk space on the drive where dumps are collected. Each process dump will take space in the disk approximately the same size the process uses in memory (column Commit Size in Task Manager). For example, if the process’ memory usage is ~1 GB, then the size of a dump file will be around 1 GB.

  5. Start reproducing the problem: issue a request from the client (browser) that you know it would trigger the exception/crash.
    Or simply wait or make requests to the IIS/Asp.Net app until the exception/crash occurs.
    You should end up with a memory dump file (.DMP) in the location where ProcDump.exe was saved (example: D:\Temp-Dumps\).
     
  6. Compress the dump file(s) - .DMP - before uploading them to share for analysis.

 

 

 

Using the UI tool DebugDiag, Debug Diagnostics Collection

 

DebugDiag requires installation, but it is able to determine itself the whatever process instance - PID - happens to execute for an application pool at any point in time; even when that process may occasionally crash, hence restart with different PID. Data collected by DebugDiag is richer: along with the dump, we get a monitoring (txt) log with all other exceptions that occurred in the process.

 

 

 

#1.

Download Debug Diagnostic and install it on IIS machine:

https://www.microsoft.com/en-us/download/details.aspx?id=49924 v2.2 (if 32-bit system)

https://www.microsoft.com/en-us/download/details.aspx?id=103453 v2.3.2 (only supports 64-bit OS)

   

 

 

#2.

Open Debug Diagnostic Collection.
If a wizard does not show up, click Add Rule.
 

 

 

#3.

Choose Crash and click next.

 

 

 

 

#4.

Choose “A specific IIS web application pool” and Next.

 

 

 

 

 

#5.

Select the application pool which runs the problematic application and then click Next.

 

 

 

 

#6.

Lower the Maximum number of userdumps created by the rule to 3 (up to 5; there is no need to collect more).

Leave the Exceptions/Breakpoints/Events alone; don't add any.

 

 

 

 

 

#7.

Click Next and then configure the file location where the dump file(s) will be generated.
Please make sure that there is enough disk space on the drive where dumps are collected. Each process dump will take space in the disk approximately the same size the process uses in memory (column Commit Size in Task Manager). For example, if the w3wp.exe process memory usage is ~2 GB, then the size of each dump file will be around 2 GB.
Do not choose a disk in network/UNC; choose a local disk.

 

 

 

 

 

#8.

Click Next, select to Activate the rule now, and then Finish.
When a second-chance crashing exception is logged, a dump file should be created in the user dump location selected above.
Archive each dump file in its own ZIP and prepare to hand over to the support engineer; upload in a secure file transfer space.

 

 

 

If we don't get dumps, then we probably don't have a crash. Remember my article about how exceptions are handled and how to collect memory dumps to study them. We can double check if a crash occurred or not: read about w3wp.exe crashes.

 

 

 

Aside: Just in case you are wondering what I use to capture screenshots for illustrating my articles, check out this little ShareX application in Windows Store.

Updated Sep 20, 2021
Version 9.0
No CommentsBe the first to comment