I am using sos.dll and windbg to anayze a w3wp.exe dump. There is a high number of .Net CLR exceptions thrown per/sec shown in perfmon and i am trying to investigate this. I tried doing a !dumpheap -stat -type Exception. But does this show the exceptions that were thrown at the instance i took the dump or does this show all the exception object instances that were created? Exception object instances may be created without being thrown.
Is there a way to just get the exceptions that were thrown?
You use the wrong tools. Install Windows Performance Toolkit which is part of the Windows 10 SDK. The 1607 SDK can be used for Win8/10 systems, the older 1511 SDK can be used for Windows 7/2008R2.
Now use the WPRP profile that I posted here to capture the activity of your application by opening a cmd.exe as admin
After captured some activity of your tool, run this command to stop the capturing:
Now make a double click on the
Result.etl
to open it in Windows Performance Analyzer and load debug symbols.Now drag & drop the
Generic Event
graph to the analysis pane, order the colums forProvider
,process
,Taskname
,Field 1
,Time
,Opcode Name
andStack
. Now filter for theMicrosoft-Windows-DotNETRuntime
provider and expand your process name entry and next expand the entry for TasknameException
:Here in this demo, the VS Addon Resharper caused a
JetBrains.Application.Progress.ProcessCancelledException
. Check which excceptions you see for your process and check the stack where the exceptions are raised.