Using DebugDiag to capture a dump on First Chance Exception
http://blogs.msdn.com/b/davidklinems/archive/2005/07/12/438061.aspx
I’ll be using DebugDiag v1.2, below is the download link:http://www.microsoft.com/en-us/download/details.aspx?id=26798
Download and install the tool corresponding to the bitness of the server and not the process i.e., for 32 bit machines download x86 and for 64 bit download x64. The default installation folder is “C:\Program Files\DebugDiag”
</p>
NOTE: Please ensure you have sufficient disk space when using DebugDiag to capture memory dump. The dump files are as big as the process. So if you have a process consuming 600 MB, the dump file would around ~600 MB. If there are many files created then you are running at the risk of crashing the server due to insufficient disk space. </td> </tr> </tbody> </table>
There are 2 ways to capture FIRST CHANCE EXCEPTION dumps of a process.
</ul>
Method 1: Generate a dump for all First Chance Exception
This is the easiest way to capture a dump for any exception that is raised within the process, However this captures unnecessary data and a lot of junk data is generated and hence is never recommended. Below are the steps to configure the same:
Note: If the target is a web application hosted on IIS then, choose either “All IIS/COM+ related processes” or “A specific IIS web application pool”.
</ol>
This will generate a dump for any unconfigured exception that may occur inside the target process. The file name will be in the following format:
Example:
w3wp__DefaultAppPool__PID__10032__Date__05_09_2012__Time_12_52_51PM__406__First chance exception 0XE0434352.dmp
Method 2: Target a specific First Chance Exception (Recommended)
Follow the above method until step 5. Here we will target a specific First Chance Exception. I will be targeting OOM exception for my example/
</ol>
NOTE: The Exception type is case sensitive. Ensure it is entered correctly. For more details please visit the following link: </font>http://msdn.microsoft.com/en-us/library/system.systemexception.aspx
The dumps created by this rule will be in the following format:
Example:
w3wp__PID__2364__Date__05_09_2012__Time_12_59_51PM__406__First Chance System.OutOfMemoryException.dmp
|