tags:

views:

50

answers:

2

Is there a .Net equivalent or analogue for dtrace?

A: 

Yes. Windbg and perfmon

Mitch Wheat
dTrace is scriptable. Is this also the case for Windbg and perfmon?
Thorbjørn Ravn Andersen
A: 

Not directly in the sense of a system where you can 'script' the way you can with DTrace.

However there is Event Tracing (Good intro), which combined with Performance monitoring and Powershell (Powershell and ETW ) could provide you with the information you need. It is not specific to .NET but encompasses a given .NET process (use perfmon for the .NET specific items).

S.Skov