比较两个转储文件以报告增长最快的对象
用于调试托管应用程序如果我有两个转储文件,是否可以比较这两个文件?我正在考虑内存泄漏的情况,如果我在不同时间拍摄进程快照,我想知道是否有办法自动比较文件并获取有关哪个对象的数量和/或大小增长最大的某种类型的报告。我知道您可以通过 ANT 内存分析器生成这些类型的报告,但需要为此目的寻找任何免费工具/脚本。
For debugging managed applications If I have two dump files, is there anyway to compare these two file? I am thinking about the scenario of memory leaks and if I take process snapshots at different time, I was wondering if there are anyways of automatically comparing the files and get some type of report on which object has largest growth in count and/or size. I know you can generate these type of reports via ANT memory profiler but looking for any free tools/scripts for this purpose.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
!dumpheap -stat
并使用 powershell 脚本比较结果吗?Can you use
!dumpheap -stat
and compare the results using a powershell script?