.NET 的 JVMTI 等效项
我正在寻找一些 Microsoft API,它们具有与 JVMTI 用于 Java 应用程序相同的功能来监视 .NET 应用程序。 例如,我希望能够查看每个方法调用及其所花费的时间(我可以使用 JVMTI 在我的 Java 应用程序上做到这一点)。感谢您的帮助。
I am looking for some Microsoft API that whould have the same capabilities for monitoring .NET applications as JVMTI has for Java applications.
For example, I'd like to be able to see every method call and the time it took (I am able to do that on my Java applications with JVMTI). Thank you for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您想要 分析 API。这是一件复杂的事情,我之前还没有深入研究过,但这个链接应该是一个很好的起点。
当然,也可以使用现有的分析器 - 我个人主要使用 dotTrace 。
It sounds like you want the Profiling API. It's a complicated business, and one I haven't gone into myself before now, but that link should be a good starting point.
Of course, there are existing profilers can use too - I've mostly used dotTrace personally.