Is there a dtrace equivalent for .Net

Is there an .Net equivalent or equivalent for dtrace?

+4
source share
3 answers

Not directly in the sense of a system where you can β€œscript” like you can with DTrace.

However, there is an event trace ( Good introduction ), combined with performance monitoring and Powershell ( Powershell and ETW ) can provide you with the information you need. It is not specific to .NET, but includes this .NET process (use perfmon for specific .NET elements).

+1
source

Now that ASP.NET can be run in Linux-compatible containers, and these Linux-compatible containers can be run on SmartOS instead, it may actually be possible to run Dtrace to help debug .NET Code or CoreCLR code by At least actually it has already been done: https://www.joyent.com/blog/running-and-debugging-coreclr-on-triton

+1
source

Yes. Windbg and perfmon

0
source

Source: https://habr.com/ru/post/1302188/


All Articles