Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

DebugDiag2 Analysis tool timeout on a dump file

I have a 6GB dump file for an IIS process that I generated and during the "Running Analysis" phase of processing I am getting a "Canceling due to timeout" message from the tool after the 60s limit.

Is there a way to increase the timeout?

like image 780
Aaron Avatar asked Mar 04 '23 17:03

Aaron


1 Answers

The timeout can be configured by editing the C:\Program Files\DebugDiag\AnalysisRules\DebugDiag.AnalysisRules.dll.config file, and updating the GCRootTimeout config setting:

<!-- GCRootTimeout:  maximum number of seconds to spend scanning for GC root chains -->
<add key="GCRootTimeout" value="1200"/>
like image 82
boflynn Avatar answered Apr 02 '23 10:04

boflynn