Hi, Java has the thread dump which is triggered by a signal 3 sent to the process (e.g. "kill -3 PID"). The equivalent I've found for .NET is to use ADPlus (http://support.microsoft.com/kb/286350). This basically attaches a debugger, takes a mini dump, and executes a few commands. I find .NET's approach to be a very brute force, cludgy approach, and it appears to be slower, too.
Does anyone know of any alternatives?
(BTW, I recently found the following URL but haven't tried it: http://www.interact-sw.co.uk/iangblog/2004/11/16/stackdump)
Thanks.