如何查找具有特定调用堆栈的线程(来自数千个线程)

How to look for a thread with specific call stacks (from thousands of threads)

我需要查看转储文件中具有特定堆栈跟踪的线程。此文件有数千个线程

0:638> !threads
ThreadCount:      23800
UnstartedThread:  175
BackgroundThread: 4569
PendingThread:    194
DeadThread:       19053
Hosted Runtime:   no

我使用了 ~* e !clrstack 来尝试获取我以后可以搜索的所有堆栈。但我猜 windbg 缓冲区足够小,因为当我滚动到顶部时,我只会得到几百个线程堆栈。我尝试使用该选项将结果写入文本文件,但这似乎只是写出缓冲区中的任何内容。任何想法我可以得到要么使 windbg window 缓冲区真的非常大,要么任何其他技巧来寻找可能具有特定调用堆栈的线程?

在任何命令之前使用 .logopen yourpath\foo.txt windbg 会将所有内容记录在 txt 文件中

0:000> .logopen d:\foo.txt
Opened log file 'd:\foo.txt'

0:000> ~* e kb
RetAddr           : Args to Child                                                           : Call Site
00007ff8`c4d3444f : 00000072`ece4d000 00007ff8`c4d8d4b0 00007ff8`c4d8d4b0 00007ff8`c4d8d4b0 : ntdll!LdrpDoDebuggerBreak+0x30
xx
RetAddr           : Args to Child                                                           : Call Site
xx

0:000> .logclose
Closing open log file d:\foo.txt
0:000> q

cat d:\foo.txt
Opened log file 'd:\foo.txt'

0:000> ~* e kb
RetAddr           : Args to Child                                                           : Call Site
00007ff8`c4d3444f : 00000072`ece4d000 00007ff8`c4d8d4b0 00007ff8`c4d8d4b0 00007ff8`c4d8d4b0 : ntdll!LdrpDoDebuggerBreak+0x30

cat d:\foo.txt | wc
     27     193    2736