".NET performance" has no values for coreclr apps #1141
-
Hi everyone, I've noticed that the ".NET performance" tab always reports no values for .NET Core / 5 / 6 applications using the nighty build (15436cf). The ".NET assemblies" tab seems to be working as expected. Thank you :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Microsoft removed support for performance counters in .NET core and replaced them with a custom data protocol over loopback network socket: https://docs.microsoft.com/en-us/dotnet/core/diagnostics/event-counters Process Explorer and other projects also don't support .NET core because the development required (compression libraries, parser libraries, potential security issues) for their custom protocol requires too much work. The only tool available is Microsoft's dotnet-counters: https://docs.microsoft.com/en-us/dotnet/core/diagnostics/dotnet-counters |
Beta Was this translation helpful? Give feedback.
Microsoft removed support for performance counters in .NET core and replaced them with a custom data protocol over loopback network socket: https://docs.microsoft.com/en-us/dotnet/core/diagnostics/event-counters
Process Explorer and other projects also don't support .NET core because the development required (compression libraries, parser libraries, potential security issues) for their custom protocol requires too much work. The only tool available is Microsoft's dotnet-counters: https://docs.microsoft.com/en-us/dotnet/core/diagnostics/dotnet-counters