Releases: dotnet/diagnostics
Diagnostics Release - v10.0.721401
General announcements
General fixes and improvements across diagnostic tools, SOS debugger commands, and the diagnostics client library since v9.0.661903.
dotnet-dump / SOS
- Heap enumeration progress reporting: Commands like
verifyheapanddumpheap -statnow show periodic progress output (every 10 seconds) during heap walks. On large dumps, these commands previously produced no output for several minutes, making them indistinguishable from a hang. Use-noprogressto suppress the output for scripting scenarios. (#5773) !DumpStackObjectson Linux alternate signal stacks:!dsonow detects when threads are on alternate signal stacks (e.g., stack overflow handlers) and scans both stacks for managed objects. Previously, when the SP pointed to the signal handler stack, the scan missed all objects on the thread's normal stack. (#5723)!name2eeand!token2eenow only show modules with relevant hits: These commands have been reimplemented in managed code with reduced verbosity. Wildcard searches now only print headers for modules with matches and summarize non-matching modules at the end, cutting down on output spam. (#5719)!dumpheap -stat -bycount: New-bycountflag sorts the statistics table by object count instead of total size, useful when comparing heap snapshots over time to identify growing allocation patterns. (#4665, #5722)!DumpMT -all: New-allflag includes class details and method descriptors inline, reducing the need for separate!DumpClassand!DumpMDcalls. The canonical Method Table line now only appears when it differs from the current MT, and class only appears for older . (#5701)!threadpool -stat: New-statflag provides an aggregated summary of work items by type with counts and total size, without listing individual items. Can be combined with-wito get both views. (#531, #5737)- Non-createdump dump detection: SOS now warns when loading Linux/macOS dumps not created by the runtime's
createdumptool. System dumps (e.g., fromcoredumpctl) may be missing memory regions required by SOS commands, the warning gives early warning to users to avoid time waste. (#5720) - SOS output to LLDB
SBCommandReturnObject: SOS commands now write output to LLDB's result object when invoked viaSBCommandInterpreter, enabling LLDB to capture SOS output instead of only printing it to console. (#5728)
SOS Bug Fixes
!clrstack -lushort sign extension: Fixed a bug whereushortlocal values >= 0x8000 were sign-extended through ashortcast, producing incorrect large values. (#5218, #5721)!clrstackangle bracket trimming: Fixed issue where method names containing<>(e.g., async state machines, generic types) were truncated when DML is enabled, because angle brackets were interpreted as DML markup instead of literal text. (#5594)!uon IL stubs:!unow works on IL stubs (P/Invoke marshaling stubs) instead of failing. The command detects nil metadata tokens and falls back gracefully. (#1907, #5726)!DumpILon IL stubs:!DumpILnow gives a clear message for IL stubs (whose IL is freed after JIT) instead of a cryptic "error decoding IL" message. (#5731)- Memory read vs. corrupt MT errors: SOS error messages now distinguish between "failed to read memory" and "object has a corrupt method table", helping users determine if the issue is with the dump file or actual heap corruption. (#5680)
- Negative symbol lookup caching: Failed symbol lookups are now cached, preventing repeated round-trips to the symbol server for known-missing symbols. This eliminates multi-minute delays w multiple commands rely on symbols for operations or information augmentation. (#675, #5729)
- GCInfoDecoder synchronized with runtime: Updated
GCInfoDecoderandGCInfoDumperto match the current state in dotnet/runtime, ensuring!gcinfoworks correctly against current runtime versions (runtime async). (#5672)
dotnet-trace
collect-linuximprovements: Thecollect-linuxcommand continues to receive usability and stability improvements:- Callstack capture for runtime events: .NET runtime events (exceptions, GC, etc.) now include full physical call stacks with resolved frames. Previously, these events only showed the kernel tracepoint frame (
user_events_write_core) with no user-space context. (#5756) - Terminal robustness: Fixed crashes in no-TTY environments (e.g., CI/CD pipelines, containers) and when stdout/stdin are redirected. The progress display now probes console capabilities upfront and falls back to static messages when cursor positioning is unavailable. (#5771, #5745) Terminal cursor visibility is now reliably restored on all exit paths (normal, Ctrl+C, error) and other crashes associated with cursor visibility. (#5707, #5747)
- Process probing robustness: Process enumeration and probing now gracefully handle races where processes exit between discovery and connection, reporting "could not be probed" instead of crashing with stack traces. (#5778, #5705)
- Callstack capture for runtime events: .NET runtime events (exceptions, GC, etc.) now include full physical call stacks with resolved frames. Previously, these events only showed the kernel tracepoint frame (
dotnet-counters
--noAbbreviateValues: New option ondotnet-counters monitorto display full counter values without abbreviation. Useful when tracking small changes in large values (e.g., unix timestamps) where abbreviation like1.7Thides incremental changes. (#4415, #5734)
Microsoft.Diagnostics.NETCore.Client
- Cross-container diagnostic support: Diagnostic tools (
dotnet-trace,dotnet-counters,dotnet-stack,dotnet-dump) can now discover and connect to .NET processes running in different PID namespaces, such as sidecar containers withpid: host. The library inspects/proc/{pid}/statusfor namespace PIDs and resolves diagnostic sockets across container boundaries via/proc/{pid}/root/. Also adds support for processes using a non-defaultTMPDIRin the same namespace. (#5735) - Dump paths with spaces on Windows:
DiagnosticsClient.WriteDump()now correctly quotes dump paths containing spaces on Windows, fixing "pid argument no longer supported" errors. (#5593)
Packages released to NuGet
dotnet-counters.10.0.721401.nupkgdotnet-dsrouter.10.0.721401.nupkgdotnet-dump.10.0.721401.nupkgdotnet-gcdump.10.0.721401.nupkgdotnet-sos.10.0.721401.nupkgdotnet-stack.10.0.721401.nupkgdotnet-symbol.10.0.721401.nupkgdotnet-trace.10.0.721401.nupkgMicrosoft.Diagnostics.DbgShim.10.0.721401.nupkgMicrosoft.Diagnostics.DbgShim.linux-arm.10.0.721401.nupkgMicrosoft.Diagnostics.DbgShim.linux-arm64.10.0.721401.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-arm.10.0.721401.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-arm64.10.0.721401.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-x64.10.0.721401.nupkgMicrosoft.Diagnostics.DbgShim.linux-x64.10.0.721401.nupkgMicrosoft.Diagnostics.DbgShim.osx-arm64.10.0.721401.nupkgMicrosoft.Diagnostics.DbgShim.osx-x64.10.0.721401.nupkgMicrosoft.Diagnostics.DbgShim.win-arm64.10.0.721401.nupkgMicrosoft.Diagnostics.DbgShim.win-x64.10.0.721401.nupkgMicrosoft.Diagnostics.DbgShim.win-x86.10.0.721401.nupkgMicrosoft.Diagnostics.NETCore.Client.0.2.721401.nupkg
Global Tools - Single File Links
Note: All Windows assets are signed with a trusted Microsoft Authenticode Certificate. To verify
integrity for Linux and macOS assets check the CSV in the assets section of the release for their SHA512 hashes.
| Tool | Platform | Download Link |
|---|---|---|
| dotnet-counters | linux-arm | Download |
| dotnet-dump | linux-arm | Download |
| dotnet-gcdump | linux-arm | Download |
| dotnet-sos | linux-arm | Download |
| dotnet-stack | linux-arm | Download |
| dotnet-symbol | linux-arm | Download |
| dotnet-trace | linux-arm | Download |
| dotnet-counters | linux-arm64 | Download |
| dotnet-dump | linux-arm64 | Download |
| dotnet-gcdump | linux-arm64 | [Download](https://download.visualstudio.microsoft.com/download/pr/dotnet-diagnostics_20260414.1/A60C953B335054EAFB0D3AC82C2EE97D37474C696EB2B0215... |
Diagnostics Release - v9.0.661903
General announcements
General fixes to tools.
dotnet-dump/SOS issues fixed for release
crashinfonow only shows as an available command forprocesses with an unhandled exception.
dotnet-trace
- New preview command collect-linux, supporting collecting application events through kernel infrastructure. See documentation for runtime and kernel configuration requirements.
- Breaking change: In past versions,
collectsupported and defualted to a profile called 'cpu-sampling'. To match the former behavior exactly, use--profile dotnet-sampled-thread-time --providers "Microsoft-Windows-DotNETRuntime:0x14C14FCCBD:4". The new default is--profile dotnet-sampled-thread-time,dotnet-common.
Packages released to NuGet
dotnet-counters.9.0.661903.nupkgdotnet-dsrouter.9.0.661903.nupkgdotnet-dump.9.0.661903.nupkgdotnet-gcdump.9.0.661903.nupkgdotnet-sos.9.0.661903.nupkgdotnet-stack.9.0.661903.nupkgdotnet-symbol.9.0.661903.nupkgdotnet-trace.9.0.661903.nupkgMicrosoft.Diagnostics.DbgShim.9.0.661903.nupkgMicrosoft.Diagnostics.DbgShim.linux-arm.9.0.661903.nupkgMicrosoft.Diagnostics.DbgShim.linux-arm64.9.0.661903.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-arm.9.0.661903.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-arm64.9.0.661903.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-x64.9.0.661903.nupkgMicrosoft.Diagnostics.DbgShim.linux-x64.9.0.661903.nupkgMicrosoft.Diagnostics.DbgShim.osx-arm64.9.0.661903.nupkgMicrosoft.Diagnostics.DbgShim.osx-x64.9.0.661903.nupkgMicrosoft.Diagnostics.DbgShim.win-arm64.9.0.661903.nupkgMicrosoft.Diagnostics.DbgShim.win-x64.9.0.661903.nupkgMicrosoft.Diagnostics.DbgShim.win-x86.9.0.661903.nupkgMicrosoft.Diagnostics.NETCore.Client.0.2.661903.nupkg
Global Tools - Single File Links
Note: All Windows assets are signed with a trusted Microsoft Authenticode Certificate. To verify
integrity for Linux and macOS assets check the CSV in the assets section of the release for their SHA512 hashes.
| Tool | Platform | Download Link |
|---|---|---|
| dotnet-counters | linux-arm | Download |
| dotnet-dump | linux-arm | Download |
| dotnet-gcdump | linux-arm | Download |
| dotnet-sos | linux-arm | Download |
| dotnet-stack | linux-arm | Download |
| dotnet-symbol | linux-arm | Download |
| dotnet-trace | linux-arm | Download |
| dotnet-counters | linux-arm64 | Download |
| dotnet-dump | linux-arm64 | Download |
| dotnet-gcdump | linux-arm64 | Download |
| dotnet-sos | linux-arm64 | Download |
| dotnet-stack | linux-arm64 | Download |
| dotnet-symbol | linux-arm64 | Download |
| dotnet-trace | linux-arm64 | Download |
| dotnet-counters | linux-musl-arm | Download |
| dotnet-dump | linux-musl-arm | Download |
| dotnet-gcdump | linux-musl-arm | Download |
| dotnet-sos | linux-musl-arm | Download |
| dotnet-stack | linux-musl-arm | Download |
| dotnet-symbol | linux-musl-arm | Download |
| dotnet-trace | linux-musl-arm | Download |
| dotnet-counters | linux-musl-arm64 | Download |
| dotnet-dump | linux-musl-arm64 | Download |
| dotnet-gcdump | linux-musl-arm64 | Download |
| dotnet-sos | linux-musl-arm64 | Download |
| dotnet-stack | linux-musl-arm64 | Download |
| dotnet-symbol | linux-musl-arm64 | Download |
| dotnet-trace | linux-musl-arm64 | Download |
| dotnet-counters | linux-musl-x64 | Download |
| dotnet-dump | linux-musl-x64 | Download |
| dotnet-gcdump | linux-musl-x64 | Download |
| dotnet-sos | linux-musl-x64 | Download |
| dotnet-stack | linux-musl-x64 | Download |
| dotnet-symbol | linux-musl-x64 | Download |
| dotnet-trace | linux-musl-x64 | Download |
| dotnet-counters | linux-x64 | Download |
| dotne... |
Diagnostics Release - v9.0.652701
General announcements
General fixes to logging, error, and help outputs from all tools.
dotnet-dump/SOS issues fixed for release
- SOS will now automatically load in WinDBG for stowed exceptions for interop scenarios.
clrstacknow supports printing a limitted number of frames using the-cparameter.crashinfonow supports reading the a module's error buffer from Native AOT dumps.- Updates
gcinfodumping to support newer runtimes. - Improved signature parsing/dumping to support wider sets of valid IL.
- General fixes to SOS.
dotnet-gcdump
- Added basic support for Native AOT gcheap traces.
- Added suport for launching dsrouter transparently for mobile scenarios.
dotnet-counters
- Improved visualization for metrics with tags.
- Added suport for launching dsrouter transparently for mobile scenarios.
dotnet-trace
- Fixed parsing correlation fields from events emitted by
Microsoft-Extensions-Logging. - Fixes default rundown option for
dotnet-traceto true.
Microsoft.Diagnostics.NETCore.Client
- Wraps most connection errors during into a
ServerNotAvailableExceptionderiving fromDiagnosticsClientExceptionfor easier error attribution and abstraction.
Packages released to NuGet
dotnet-counters.9.0.652701.nupkgdotnet-dsrouter.9.0.652701.nupkgdotnet-dump.9.0.652701.nupkgdotnet-gcdump.9.0.652701.nupkgdotnet-sos.9.0.652701.nupkgdotnet-stack.9.0.652701.nupkgdotnet-symbol.9.0.652701.nupkgdotnet-trace.9.0.652701.nupkgMicrosoft.Diagnostics.DbgShim.9.0.652701.nupkgMicrosoft.Diagnostics.DbgShim.linux-arm.9.0.652701.nupkgMicrosoft.Diagnostics.DbgShim.linux-arm64.9.0.652701.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-arm.9.0.652701.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-arm64.9.0.652701.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-x64.9.0.652701.nupkgMicrosoft.Diagnostics.DbgShim.linux-x64.9.0.652701.nupkgMicrosoft.Diagnostics.DbgShim.osx-arm64.9.0.652701.nupkgMicrosoft.Diagnostics.DbgShim.osx-x64.9.0.652701.nupkgMicrosoft.Diagnostics.DbgShim.win-arm64.9.0.652701.nupkgMicrosoft.Diagnostics.DbgShim.win-x64.9.0.652701.nupkgMicrosoft.Diagnostics.DbgShim.win-x86.9.0.652701.nupkgMicrosoft.Diagnostics.NETCore.Client.0.2.652701.nupkg
Global Tools - Single File Links
Note: All Windows assets are signed with a trusted Microsoft Authenticode Certificate. To verify
integrity for Linux and macOS assets check the CSV in the assets section of the release for their SHA512 hashes.
| Tool | Platform | Download Link |
|---|---|---|
| dotnet-counters | linux-arm | Download |
| dotnet-dump | linux-arm | Download |
| dotnet-gcdump | linux-arm | Download |
| dotnet-sos | linux-arm | Download |
| dotnet-stack | linux-arm | Download |
| dotnet-symbol | linux-arm | Download |
| dotnet-trace | linux-arm | Download |
| dotnet-counters | linux-arm64 | Download |
| dotnet-dump | linux-arm64 | Download |
| dotnet-gcdump | linux-arm64 | Download |
| dotnet-sos | linux-arm64 | Download |
| dotnet-stack | linux-arm64 | Download |
| dotnet-symbol | linux-arm64 | Download |
| dotnet-trace | linux-arm64 | Download |
| dotnet-counters | linux-musl-arm | Download |
| dotnet-dump | linux-musl-arm | Download |
| dotnet-gcdump | linux-musl-arm | Download |
| dotnet-sos | linux-musl-arm | Download |
| dotnet-stack | linux-musl-arm | Download |
| dotnet-symbol | linux-musl-arm | Download |
| dotnet-trace | linux-musl-arm | Download |
| dotnet-counters | linux-musl-arm64 | Download |
| dotnet-dump | linux-musl-arm64 | Download |
| dotnet-gcdump | linux-musl-arm64 | Download |
| dotnet-sos | linux-musl-arm64 | Download |
| dotnet-stack | linux-musl-arm64 | Download |
| dotnet-symbol | linux-musl-arm64 | Download |
| dotnet-trace | linux-musl-arm64 | Download |
| dotnet-counters | linux-musl-x64 | Download |
| dotnet-dump | linux-musl-x64 | Download |
| dotnet-gcdump | linux-musl-x64 | Download |
| dotnet-sos | linux-musl-x64 | Download |
| dotnet-stack | linux-musl-x64 | Download |
| dotnet-symbol | linux-musl-x64 | Download |
| dotnet-trace | linux-musl-x64 | [Download](https://download.visualstudio.microsoft.com/download/pr/dotnet-d... |
Diagnostics Release - v9.0.621003
General announcements
- All tools now enable
InvariantGlobalizationto drop any dependency on ICU.
dotnet-dump/SOS issues fixed for release
- Thread statics are now displayed in a user-friendly format when dumping objects.
dotnet-dumpnow supports supplying a custom diagnostic port to collect dumps. Currently dotnet-dump only accepts connecting to runtimelistenmode ports.- Fixes the
maddresscommand for SOS under WinDBG.
dotnet-counters
- Breaking change: Previously dotnet-counters allowed specifying a list of space separated counters prior to the
--token in collect/monitor mode. Counters must now be supplied explicitly in the--countersoption as a list of comma-separated values. All tokens that are outside of regular flags/options will be assumed to be part of a subprocess to launch and monitor.
dotnet-trace
- Adds option to launch
dsrouterfromdotnet-tracefor mobile device scenarios.
Microsoft.Diagnostics.NETCore.Client
- Allows adding startup hooks through EventPipe using
DiagnosticsClient.ApplyStartupHook. - Add
DiagnosticsClientConnectorto support creating aDiagnosticsClientfrom a diagnostic port
Packages released to NuGet
dotnet-counters.9.0.621003.nupkgdotnet-dsrouter.9.0.621003.nupkgdotnet-dump.9.0.621003.nupkgdotnet-gcdump.9.0.621003.nupkgdotnet-sos.9.0.621003.nupkgdotnet-stack.9.0.621003.nupkgdotnet-symbol.9.0.621003.nupkgdotnet-trace.9.0.621003.nupkgMicrosoft.Diagnostics.DbgShim.9.0.621003.nupkgMicrosoft.Diagnostics.DbgShim.linux-arm.9.0.621003.nupkgMicrosoft.Diagnostics.DbgShim.linux-arm64.9.0.621003.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-arm.9.0.621003.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-arm64.9.0.621003.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-x64.9.0.621003.nupkgMicrosoft.Diagnostics.DbgShim.linux-x64.9.0.621003.nupkgMicrosoft.Diagnostics.DbgShim.osx-arm64.9.0.621003.nupkgMicrosoft.Diagnostics.DbgShim.osx-x64.9.0.621003.nupkgMicrosoft.Diagnostics.DbgShim.win-arm64.9.0.621003.nupkgMicrosoft.Diagnostics.DbgShim.win-x64.9.0.621003.nupkgMicrosoft.Diagnostics.DbgShim.win-x86.9.0.621003.nupkgMicrosoft.Diagnostics.NETCore.Client.0.2.621003.nupkg
Global Tools - Single File Links
Note: All Windows assets are signed with a trusted Microsoft Authenticode Certificate. To verify
integrity for Linux and macOS assets check the CSV in the assets section of the release for their SHA512 hashes.
| Tool | Platform | Download Link |
|---|---|---|
| dotnet-counters | linux-arm | Download |
| dotnet-dump | linux-arm | Download |
| dotnet-gcdump | linux-arm | Download |
| dotnet-sos | linux-arm | Download |
| dotnet-stack | linux-arm | Download |
| dotnet-symbol | linux-arm | Download |
| dotnet-trace | linux-arm | Download |
| dotnet-counters | linux-arm64 | Download |
| dotnet-dump | linux-arm64 | Download |
| dotnet-gcdump | linux-arm64 | Download |
| dotnet-sos | linux-arm64 | Download |
| dotnet-stack | linux-arm64 | Download |
| dotnet-symbol | linux-arm64 | Download |
| dotnet-trace | linux-arm64 | Download |
| dotnet-counters | linux-musl-arm64 | Download |
| dotnet-dump | linux-musl-arm64 | Download |
| dotnet-gcdump | linux-musl-arm64 | Download |
| dotnet-sos | linux-musl-arm64 | Download |
| dotnet-stack | linux-musl-arm64 | Download |
| dotnet-symbol | linux-musl-arm64 | Download |
| dotnet-trace | linux-musl-arm64 | Download |
| dotnet-counters | linux-musl-x64 | Download |
| dotnet-dump | linux-musl-x64 | Download |
| dotnet-gcdump | linux-musl-x64 | Download |
| dotnet-sos | linux-musl-x64 | Download |
| dotnet-stack | linux-musl-x64 | Download |
| dotnet-symbol | linux-musl-x64 | Download |
| dotnet-trace | linux-musl-x64 | Download |
| dotnet-counters | linux-x64 | Download |
| dotnet-dump | linux-x64 | Download |
| dotnet-gcdump | linux-x64 | Download |
| dotnet-sos | linux-x64 | Download |
| dotnet-stack | linux-x64 | Download |
| dotnet-symbol | linux-x64 | Download |
| dotnet-trace | linux-x64 | Download |
| dotnet-counters | win-arm64 | Download |
| dotnet-dump | win-arm64 | Download |
| dotnet-gcdump | win-arm64 | Download |
| dotnet-sos | win-arm64 | [Download](https://dow... |
Diagnostics Release - v9.0.607501
General Announcements
- This is a security release containing fixes for CVE-2025-24043.
- Tools no longer support Windows ARM32 environments.
dotnet-dump and SOS
- Add
SaveAllModulescommand. - Fixes lifetime bugs when hosting SOS under WinDBG.
- Fixes validation of dynamic payloads downloaded during dump analysis when running debugger in secure mode.
Packages released to NuGet
dotnet-counters.9.0.607501.nupkgdotnet-dsrouter.9.0.607501.nupkgdotnet-dump.9.0.607501.nupkgdotnet-gcdump.9.0.607501.nupkgdotnet-sos.9.0.607501.nupkgdotnet-stack.9.0.607501.nupkgdotnet-symbol.9.0.607501.nupkgdotnet-trace.9.0.607501.nupkgMicrosoft.Diagnostics.DbgShim.9.0.607501.nupkgMicrosoft.Diagnostics.DbgShim.linux-arm.9.0.607501.nupkgMicrosoft.Diagnostics.DbgShim.linux-arm64.9.0.607501.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-arm.9.0.607501.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-arm64.9.0.607501.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-x64.9.0.607501.nupkgMicrosoft.Diagnostics.DbgShim.linux-x64.9.0.607501.nupkgMicrosoft.Diagnostics.DbgShim.osx-arm64.9.0.607501.nupkgMicrosoft.Diagnostics.DbgShim.osx-x64.9.0.607501.nupkgMicrosoft.Diagnostics.DbgShim.win-arm64.9.0.607501.nupkgMicrosoft.Diagnostics.DbgShim.win-x64.9.0.607501.nupkgMicrosoft.Diagnostics.DbgShim.win-x86.9.0.607501.nupkgMicrosoft.Diagnostics.NETCore.Client.0.2.607501.nupkg
Global Tools - Single File Links
Note: All Windows assets are signed with a trusted Microsoft Authenticode Certificate. To verify
integrity for Linux and macOS assets check the CSV in the assets section of the release for their SHA512 hashes.
| Tool | Platform | Download Link |
|---|---|---|
| dotnet-counters | linux-arm | Download |
| dotnet-dump | linux-arm | Download |
| dotnet-gcdump | linux-arm | Download |
| dotnet-sos | linux-arm | Download |
| dotnet-stack | linux-arm | Download |
| dotnet-symbol | linux-arm | Download |
| dotnet-trace | linux-arm | Download |
| dotnet-counters | linux-arm64 | Download |
| dotnet-dump | linux-arm64 | Download |
| dotnet-gcdump | linux-arm64 | Download |
| dotnet-sos | linux-arm64 | Download |
| dotnet-stack | linux-arm64 | Download |
| dotnet-symbol | linux-arm64 | Download |
| dotnet-trace | linux-arm64 | Download |
| dotnet-counters | linux-musl-arm64 | Download |
| dotnet-dump | linux-musl-arm64 | Download |
| dotnet-gcdump | linux-musl-arm64 | Download |
| dotnet-sos | linux-musl-arm64 | Download |
| dotnet-stack | linux-musl-arm64 | Download |
| dotnet-symbol | linux-musl-arm64 | Download |
| dotnet-trace | linux-musl-arm64 | Download |
| dotnet-counters | linux-musl-x64 | Download |
| dotnet-dump | linux-musl-x64 | Download |
| dotnet-gcdump | linux-musl-x64 | Download |
| dotnet-sos | linux-musl-x64 | Download |
| dotnet-stack | linux-musl-x64 | Download |
| dotnet-symbol | linux-musl-x64 | Download |
| dotnet-trace | linux-musl-x64 | Download |
| dotnet-counters | linux-x64 | Download |
| dotnet-dump | linux-x64 | Download |
| dotnet-gcdump | linux-x64 | Download |
| dotnet-sos | linux-x64 | Download |
| dotnet-stack | linux-x64 | Download |
| dotnet-symbol | linux-x64 | Download |
| dotnet-trace | linux-x64 | Download |
| dotnet-counters | win-arm64 | Download |
| dotnet-dump | win-arm64 | Download |
| dotnet-gcdump | win-arm64 | Download |
| dotnet-sos | win-arm64 | Download |
| dotnet-stack | win-arm64 | Download |
| dotnet-symbol | win-arm64 | Download |
| dotnet-trace | win-arm64 | Download |
| dotnet-counters | win-x64 | [Download](https://download.visualstudio.microsoft.com/download/pr/202501... |
Diagnostics Release - v9.0.553101
.NET 9.0 Tools Release
- SOS clean up and bug fixes
- Hosting SOS on .NET 7.x is no longer supported. .NET 8.x or 9.x needs to be installed.
- Updated System.Text.Json version to 8.0.5
- Improved dotnet-stack cancellation handling
Packages released to NuGet
dotnet-counters.9.0.553101.nupkgdotnet-dsrouter.9.0.553101.nupkgdotnet-dump.9.0.553101.nupkgdotnet-gcdump.9.0.553101.nupkgdotnet-sos.9.0.553101.nupkgdotnet-stack.9.0.553101.nupkgdotnet-symbol.9.0.553101.nupkgdotnet-trace.9.0.553101.nupkgMicrosoft.Diagnostics.DbgShim.9.0.553101.nupkgMicrosoft.Diagnostics.DbgShim.linux-arm.9.0.553101.nupkgMicrosoft.Diagnostics.DbgShim.linux-arm64.9.0.553101.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-arm.9.0.553101.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-arm64.9.0.553101.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-x64.9.0.553101.nupkgMicrosoft.Diagnostics.DbgShim.linux-x64.9.0.553101.nupkgMicrosoft.Diagnostics.DbgShim.osx-arm64.9.0.553101.nupkgMicrosoft.Diagnostics.DbgShim.osx-x64.9.0.553101.nupkgMicrosoft.Diagnostics.DbgShim.win-arm.9.0.553101.nupkgMicrosoft.Diagnostics.DbgShim.win-arm64.9.0.553101.nupkgMicrosoft.Diagnostics.DbgShim.win-x64.9.0.553101.nupkgMicrosoft.Diagnostics.DbgShim.win-x86.9.0.553101.nupkgMicrosoft.Diagnostics.NETCore.Client.0.2.553101.nupkg
Global Tools - Single File Links
Note: All Windows assets are signed with a trusted Microsoft Authenticode Certificate. To verify
integrity for Linux and macOS assets check the CSV in the assets section of the release for their SHA512 hashes.
| Tool | Platform | Download Link |
|---|---|---|
| dotnet-counters | linux-arm | Download |
| dotnet-dump | linux-arm | Download |
| dotnet-gcdump | linux-arm | Download |
| dotnet-sos | linux-arm | Download |
| dotnet-stack | linux-arm | Download |
| dotnet-symbol | linux-arm | Download |
| dotnet-trace | linux-arm | Download |
| dotnet-counters | linux-arm64 | Download |
| dotnet-dump | linux-arm64 | Download |
| dotnet-gcdump | linux-arm64 | Download |
| dotnet-sos | linux-arm64 | Download |
| dotnet-stack | linux-arm64 | Download |
| dotnet-symbol | linux-arm64 | Download |
| dotnet-trace | linux-arm64 | Download |
| dotnet-counters | linux-musl-arm64 | Download |
| dotnet-dump | linux-musl-arm64 | Download |
| dotnet-gcdump | linux-musl-arm64 | Download |
| dotnet-sos | linux-musl-arm64 | Download |
| dotnet-stack | linux-musl-arm64 | Download |
| dotnet-symbol | linux-musl-arm64 | Download |
| dotnet-trace | linux-musl-arm64 | Download |
| dotnet-counters | linux-musl-x64 | Download |
| dotnet-dump | linux-musl-x64 | Download |
| dotnet-gcdump | linux-musl-x64 | Download |
| dotnet-sos | linux-musl-x64 | Download |
| dotnet-stack | linux-musl-x64 | Download |
| dotnet-symbol | linux-musl-x64 | Download |
| dotnet-trace | linux-musl-x64 | Download |
| dotnet-counters | linux-x64 | Download |
| dotnet-dump | linux-x64 | Download |
| dotnet-gcdump | linux-x64 | Download |
| dotnet-sos | linux-x64 | Download |
| dotnet-stack | linux-x64 | Download |
| dotnet-symbol | linux-x64 | Download |
| dotnet-trace | linux-x64 | Download |
| dotnet-counters | win-arm | Download |
| dotnet-dump | win-arm | Download |
| dotnet-gcdump | win-arm | Download |
| dotnet-sos | win-arm | Download |
| dotnet-stack | win-arm | Download |
| dotnet-symbol | win-arm | Download |
| dotnet-trace | win-arm | Download |
| dotnet-counters | win-arm64 | [Download](https://download.visualstudio.microsoft.com/download/pr/20241031.1/FE5D73677EE8EAD4C6C453ADE0E0469BC104ECE4FE3C2776366ECB3DCBA23E0F/dotnet-counters... |
Diagnostics Release - v8.0.547301
dotnet-symbol
- Added back support for
--internal-serverflag. It uses interactive authenication using the brower.
dotnet-dump and SOS
- Added back support for
--internal-serverflag in the !setsymbolserver command. It uses interactive authenication using the brower. - Fix arithmetic overflow when memory dump has too many objects - #4928
- ARM64EC support - #4430
- DumpIL SOS command does not properly handle DynamicMethods in .NET Core - #4850
- Add cloud symweb support - #4848
dotnet-counters
- Provider names support the prefix "EventCounters" to indicate that only EventCounter based counters should be shown even if there is also a Meter with the same name. By default dotnet-counters prefers a Meter over EventCounters if both have the same name. This may be especially helpful because .NET 9 introduced a System.Runtime Meter that takes precedence over the System.Runtime EventCounters that were shown by default in the past. To continue viewing the System.Runtime EventCounters you could use the command "dotnet-counters monitor -p <process_id> --counters EventCounters\System.Runtime".
- Fixed an issue where specifying multiple Meters or Instruments with the same names but different tags passed to the constructor were incorrectly merged together during reporting. When used with the .NET 9 version of the runtime the tool can now track and report these independently using the correct tags (Issues #4843 and #4564).
- dotnet-counters list command has been deprecated and now refers users to our documentation at https://learn.microsoft.com/dotnet/core/diagnostics/built-in-metrics. These online docs are more detailed, complete, and up-to-date than the information that was previously embedded within the tool.
- dotnet-counters monitor no longer automatically sorts certain well-known providers to the top of the list when displaying them. All providers are sorted in alphabetical order.
Packages released to NuGet
dotnet-counters.8.0.547301.nupkgdotnet-dsrouter.8.0.547301.nupkgdotnet-dump.8.0.547301.nupkgdotnet-gcdump.8.0.547301.nupkgdotnet-sos.8.0.547301.nupkgdotnet-stack.8.0.547301.nupkgdotnet-symbol.8.0.547301.nupkgdotnet-trace.8.0.547301.nupkgMicrosoft.Diagnostics.DbgShim.8.0.547301.nupkgMicrosoft.Diagnostics.DbgShim.linux-arm.8.0.547301.nupkgMicrosoft.Diagnostics.DbgShim.linux-arm64.8.0.547301.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-arm.8.0.547301.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-arm64.8.0.547301.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-x64.8.0.547301.nupkgMicrosoft.Diagnostics.DbgShim.linux-x64.8.0.547301.nupkgMicrosoft.Diagnostics.DbgShim.osx-arm64.8.0.547301.nupkgMicrosoft.Diagnostics.DbgShim.osx-x64.8.0.547301.nupkgMicrosoft.Diagnostics.DbgShim.win-arm.8.0.547301.nupkgMicrosoft.Diagnostics.DbgShim.win-arm64.8.0.547301.nupkgMicrosoft.Diagnostics.DbgShim.win-x64.8.0.547301.nupkgMicrosoft.Diagnostics.DbgShim.win-x86.8.0.547301.nupkgMicrosoft.Diagnostics.NETCore.Client.0.2.547301.nupkg
Global Tools - Single File Links
Note: All Windows assets are signed with a trusted Microsoft Authenticode Certificate. To verify
integrity for Linux and macOS assets check the CSV in the assets section of the release for their SHA512 hashes.
| Tool | Platform | Download Link |
|---|---|---|
| dotnet-counters | linux-arm | Download |
| dotnet-dump | linux-arm | Download |
| dotnet-gcdump | linux-arm | Download |
| dotnet-sos | linux-arm | Download |
| dotnet-stack | linux-arm | Download |
| dotnet-symbol | linux-arm | Download |
| dotnet-trace | linux-arm | Download |
| dotnet-counters | linux-arm64 | Download |
| dotnet-dump | linux-arm64 | Download |
| dotnet-gcdump | linux-arm64 | Download |
| dotnet-sos | linux-arm64 | Download |
| dotnet-stack | linux-arm64 | Download |
| dotnet-symbol | linux-arm64 | Download |
| dotnet-trace | linux-arm64 | Download |
| dotnet-counters | linux-musl-arm64 | Download |
| dotnet-dump | linux-musl-arm64 | Download |
| dotnet-gcdump | linux-musl-arm64 | Download |
| dotnet-sos | linux-musl-arm64 | Download |
| dotnet-stack | linux-musl-arm64 | Download |
| dotnet-symbol | linux-musl-arm64 | Download |
| dotnet-trace | linux-musl-arm64 | Download |
| dotnet-counters | linux-musl-x64 | Download |
| dotnet-dump | linux-musl-x64 | Download |
| dotnet-gcdump | linux-musl-x64 | Download |
| dotnet-sos | linux-musl-x64 | Download |
| dotnet-stack | linux-musl-x64 | Download |
| dotnet-symbol | linux-musl-x64 | Download |
| dotnet-trace | linux-musl-x64 | Download |
| dotnet-counters | linux-x64 | Download |
| dotnet-dump | linux-x64 | Download |
| dotnet-gcdump | linux-x64 | Download |
| dotnet-sos | linux-x64 | Download |
| dotnet-stack | linux-x64 | [Download](https://download.visualstudio.microsoft.com/download/pr/20240923.1/A38864F56554... |
Diagnostics Release - v8.0.532401
General Announcements
- Assets previously produced from https://github.com/dotnet/symstore are now getting produced and published from this repository.
Microsoft.Diagnostics.NETCore.Client
- Logging is now done through
Microsoft.Extensions.Logging.Abstractionsinstead of any concrete implementations.
General tool improvements
- Tools will no longer try to inspect/write to temp storage for command autocompletion. Such probing broke read-only file system scenarios common in containers.
dotnet-symbol
dotnet symbolis now available as a single file tool like other diagnostic tools are. For example, the windows x64 version of the tool can be found at https://aka.ms/dotnet-symbol/win-x64.- Drop support for
internal-serverflag. Users trying to reach symweb must now use--authenticated-server-pathwith an appropriate token.
dotnet-dump and SOS
- Add
dumprequestscommand to show all incoming .NET http requests. - Add
dumphttpcommand to show all outgoing .NET http requests. modulesandruntimescommand now have more diagnostic information to use in bug reports.- Update DIA symreader to 17.10.0-beta1.24272.1
- Better error handling in SOS, including proactive failing on unsupported scenarios (e.g. opening macOS dumps on Windows and using older versions of SOS accross breaking runtime changes).
- SOS can now be hosted on top of .NET 9
- Fixes to the
pathtocommand. - Support for .NET 9's exception storage format.
- Drop support for
setsymbolserver -internal. Users trying to reach symweb must now use--patwith an appropriate token and the url for the symbol server instance they desire to use.
dotnet-trace
- Support collecting GC informational events with a new profile:
gc-collect. - Support collecting
GCSettingsEventingc-collectprofile. - Add
waithandletoclreventsoption. - Validation of input options is now more aggressive an eagerly bails out on unsupported scenarios.
- Breaking change When a provider is specified with no keywords and levels, the new default is to request keyword 0 with informational level events instead of verbose level events. Change provider defaults for dotnet-trace.
- Fixes to defaults of dotnet-trace's rundown.
dotnet-counters
- Improved rendering: friendlier truncation of meter attributes.
Packages released to NuGet
dotnet-counters.8.0.532401.nupkgdotnet-dsrouter.8.0.532401.nupkgdotnet-dump.8.0.532401.nupkgdotnet-gcdump.8.0.532401.nupkgdotnet-sos.8.0.532401.nupkgdotnet-stack.8.0.532401.nupkgdotnet-symbol.8.0.532401.nupkgdotnet-trace.8.0.532401.nupkgMicrosoft.Diagnostics.DbgShim.8.0.532401.nupkgMicrosoft.Diagnostics.DbgShim.linux-arm.8.0.532401.nupkgMicrosoft.Diagnostics.DbgShim.linux-arm64.8.0.532401.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-arm.8.0.532401.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-arm64.8.0.532401.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-x64.8.0.532401.nupkgMicrosoft.Diagnostics.DbgShim.linux-x64.8.0.532401.nupkgMicrosoft.Diagnostics.DbgShim.osx-arm64.8.0.532401.nupkgMicrosoft.Diagnostics.DbgShim.osx-x64.8.0.532401.nupkgMicrosoft.Diagnostics.DbgShim.win-arm.8.0.532401.nupkgMicrosoft.Diagnostics.DbgShim.win-arm64.8.0.532401.nupkgMicrosoft.Diagnostics.DbgShim.win-x64.8.0.532401.nupkgMicrosoft.Diagnostics.DbgShim.win-x86.8.0.532401.nupkgMicrosoft.Diagnostics.NETCore.Client.0.2.532401.nupkg
Global Tools - Single File Links
Note: All Windows assets are signed with a trusted Microsoft Authenticode Certificate. To verify
integrity for Linux and macOS assets check the CSV in the assets section of the release for their SHA512 hashes.
| Tool | Platform | Download Link |
|---|---|---|
| dotnet-counters | linux-arm | Download |
| dotnet-dump | linux-arm | Download |
| dotnet-gcdump | linux-arm | Download |
| dotnet-sos | linux-arm | Download |
| dotnet-stack | linux-arm | Download |
| dotnet-symbol | linux-arm | Download |
| dotnet-trace | linux-arm | Download |
| dotnet-counters | linux-arm64 | Download |
| dotnet-dump | linux-arm64 | Download |
| dotnet-gcdump | linux-arm64 | Download |
| dotnet-sos | linux-arm64 | Download |
| dotnet-stack | linux-arm64 | Download |
| dotnet-symbol | linux-arm64 | Download |
| dotnet-trace | linux-arm64 | Download |
| dotnet-counters | linux-musl-arm64 | Download |
| dotnet-dump | linux-musl-arm64 | Download |
| dotnet-gcdump | linux-musl-arm64 | Download |
| dotnet-sos | linux-musl-arm64 | Download |
| dotnet-stack | linux-musl-arm64 | Download |
| dotnet-symbol | linux-musl-arm64 | Download |
| dotnet-trace | linux-musl-arm64 | Download |
| dotnet-counters | linux-musl-x64 | Download |
| dotnet-dump | linux-musl-x64 | Download |
| dotnet-gcdump | linux-musl-x64 | Download |
| dotnet-sos | linux-musl-x64 | Download |
| dotnet-stack | linux-musl-x64 | Download |
| dotnet-symbol | linux-musl-x64 | Download |
| dotnet-trace | linux-musl-x64 | Download |
| dotnet-counters | linux-x64 | Download |
| dotnet-dump | linux-x64 | Download |
| dotnet-gcdump | linux-x64 | Download |
| dotnet-sos | linux-x64 | [Download](https://download.visualstudio.microsoft.com/download/pr/20240624.1/2BCF2326CF8EA7BA504CD6888A149F99DFC0D636BF2EF2830FC460ECE1EC42... |
Diagnostics Release - v8.0.510501
General tooling announcements
- General bug fixes.
dotnet-counters
- Starting .NET 8, monitoring applications using dotnet-counters will show the raw value of a counter instead of deltas. A separate deltas column can be requested by specifying the
--showDeltasflag. This was not done by default to preserve horizontal space usage.
dotnet-trace
- Added option to skip collecting rundown information when collecting traces. This is the new default when collecting top level GC metrics. All other collection profiles continue ocllecting such info by default. Rundown collection can be explicitly controlled using the
--rundownflag.
Packages released to NuGet
dotnet-counters.8.0.510501.nupkgdotnet-dsrouter.8.0.510501.nupkgdotnet-dump.8.0.510501.nupkgdotnet-gcdump.8.0.510501.nupkgdotnet-sos.8.0.510501.nupkgdotnet-stack.8.0.510501.nupkgdotnet-trace.8.0.510501.nupkgMicrosoft.Diagnostics.DbgShim.8.0.510501.nupkgMicrosoft.Diagnostics.DbgShim.linux-arm.8.0.510501.nupkgMicrosoft.Diagnostics.DbgShim.linux-arm64.8.0.510501.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-arm.8.0.510501.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-arm64.8.0.510501.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-x64.8.0.510501.nupkgMicrosoft.Diagnostics.DbgShim.linux-x64.8.0.510501.nupkgMicrosoft.Diagnostics.DbgShim.osx-arm64.8.0.510501.nupkgMicrosoft.Diagnostics.DbgShim.osx-x64.8.0.510501.nupkgMicrosoft.Diagnostics.DbgShim.win-arm.8.0.510501.nupkgMicrosoft.Diagnostics.DbgShim.win-arm64.8.0.510501.nupkgMicrosoft.Diagnostics.DbgShim.win-x64.8.0.510501.nupkgMicrosoft.Diagnostics.DbgShim.win-x86.8.0.510501.nupkgMicrosoft.Diagnostics.NETCore.Client.0.2.510501.nupkg
Global Tools - Single File Links
Note: All Windows assets are signed with a trusted Microsoft Authenticode Certificate. To verify
integrity for Linux and macOS assets check the CSV in the assets section of the release for their SHA512 hashes.
| Tool | Platform | Download Link |
|---|---|---|
| dotnet-counters | linux-arm | Download |
| dotnet-dump | linux-arm | Download |
| dotnet-gcdump | linux-arm | Download |
| dotnet-sos | linux-arm | Download |
| dotnet-stack | linux-arm | Download |
| dotnet-trace | linux-arm | Download |
| dotnet-counters | linux-arm64 | Download |
| dotnet-dump | linux-arm64 | Download |
| dotnet-gcdump | linux-arm64 | Download |
| dotnet-sos | linux-arm64 | Download |
| dotnet-stack | linux-arm64 | Download |
| dotnet-trace | linux-arm64 | Download |
| dotnet-counters | linux-musl-arm64 | Download |
| dotnet-dump | linux-musl-arm64 | Download |
| dotnet-gcdump | linux-musl-arm64 | Download |
| dotnet-sos | linux-musl-arm64 | Download |
| dotnet-stack | linux-musl-arm64 | Download |
| dotnet-trace | linux-musl-arm64 | Download |
| dotnet-counters | linux-musl-x64 | Download |
| dotnet-dump | linux-musl-x64 | Download |
| dotnet-gcdump | linux-musl-x64 | Download |
| dotnet-sos | linux-musl-x64 | Download |
| dotnet-stack | linux-musl-x64 | Download |
| dotnet-trace | linux-musl-x64 | Download |
| dotnet-counters | linux-x64 | Download |
| dotnet-dump | linux-x64 | Download |
| dotnet-gcdump | linux-x64 | Download |
| dotnet-sos | linux-x64 | Download |
| dotnet-stack | linux-x64 | Download |
| dotnet-trace | linux-x64 | Download |
| dotnet-counters | win-arm | Download |
| dotnet-dump | win-arm | Download |
| dotnet-gcdump | win-arm | Download |
| dotnet-sos | win-arm | Download |
| dotnet-stack | win-arm | Download |
| dotnet-trace | win-arm | Download |
| dotnet-counters | win-arm64 | Download |
| dotnet-dump | win-arm64 | Download |
| dotnet-gcdump | win-arm64 | Download |
| dotnet-sos | win-arm64 | Download |
| dotnet-stack | win-arm64 | Download |
| ... |
Diagnostics Release - v8.0.505301
General tooling announcements
- Allow ` in hex strings in SOS commands.
- Fix DumpStackObjects error.
- [RISC-V] Implement SOS related code.
- In dotnet-counters JSON Exporter, change time formatting to universal time formatting. Fixes #3905.
- Make DiagnosticsClient.StartEventPipeSessionAsync public. Resolves #3727.
- Add RequestStackwalk parameter to EventPipeSession. Issue #3696.
- Validate that providers are > 0 to provide clear error when using Diagnostics Client.
- Provide better error messages for IPC connect failures.
- An additional flag to parallel stacks to include runtime stacks to pstacks command.
- Added dump referenced objects command.
- Add CLRMA support to SOS.
Packages released to NuGet
dotnet-counters.8.0.505301.nupkgdotnet-dsrouter.8.0.505301.nupkgdotnet-dump.8.0.505301.nupkgdotnet-gcdump.8.0.505301.nupkgdotnet-sos.8.0.505301.nupkgdotnet-stack.8.0.505301.nupkgdotnet-trace.8.0.505301.nupkgMicrosoft.Diagnostics.DbgShim.8.0.505301.nupkgMicrosoft.Diagnostics.DbgShim.linux-arm.8.0.505301.nupkgMicrosoft.Diagnostics.DbgShim.linux-arm64.8.0.505301.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-arm.8.0.505301.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-arm64.8.0.505301.nupkgMicrosoft.Diagnostics.DbgShim.linux-musl-x64.8.0.505301.nupkgMicrosoft.Diagnostics.DbgShim.linux-x64.8.0.505301.nupkgMicrosoft.Diagnostics.DbgShim.osx-arm64.8.0.505301.nupkgMicrosoft.Diagnostics.DbgShim.osx-x64.8.0.505301.nupkgMicrosoft.Diagnostics.DbgShim.win-arm.8.0.505301.nupkgMicrosoft.Diagnostics.DbgShim.win-arm64.8.0.505301.nupkgMicrosoft.Diagnostics.DbgShim.win-x64.8.0.505301.nupkgMicrosoft.Diagnostics.DbgShim.win-x86.8.0.505301.nupkgMicrosoft.Diagnostics.NETCore.Client.0.2.505301.nupkg
Global Tools - Single File Links
Note: All Windows assets are signed with a trusted Microsoft Authenticode Certificate. To verify
integrity for Linux and macOS assets check the CSV in the assets section of the release for their SHA512 hashes.
| Tool | Platform | Download Link |
|---|---|---|
| dotnet-counters | linux-arm | Download |
| dotnet-dump | linux-arm | Download |
| dotnet-gcdump | linux-arm | Download |
| dotnet-sos | linux-arm | Download |
| dotnet-stack | linux-arm | Download |
| dotnet-trace | linux-arm | Download |
| dotnet-counters | linux-arm64 | Download |
| dotnet-dump | linux-arm64 | Download |
| dotnet-gcdump | linux-arm64 | Download |
| dotnet-sos | linux-arm64 | Download |
| dotnet-stack | linux-arm64 | Download |
| dotnet-trace | linux-arm64 | Download |
| dotnet-counters | linux-musl-arm64 | Download |
| dotnet-dump | linux-musl-arm64 | Download |
| dotnet-gcdump | linux-musl-arm64 | Download |
| dotnet-sos | linux-musl-arm64 | Download |
| dotnet-stack | linux-musl-arm64 | Download |
| dotnet-trace | linux-musl-arm64 | Download |
| dotnet-counters | linux-musl-x64 | Download |
| dotnet-dump | linux-musl-x64 | Download |
| dotnet-gcdump | linux-musl-x64 | Download |
| dotnet-sos | linux-musl-x64 | Download |
| dotnet-stack | linux-musl-x64 | Download |
| dotnet-trace | linux-musl-x64 | Download |
| dotnet-counters | linux-x64 | Download |
| dotnet-dump | linux-x64 | Download |
| dotnet-gcdump | linux-x64 | Download |
| dotnet-sos | linux-x64 | Download |
| dotnet-stack | linux-x64 | Download |
| dotnet-trace | linux-x64 | Download |
| dotnet-counters | win-arm | Download |
| dotnet-dump | win-arm | Download |
| dotnet-gcdump | win-arm | Download |
| dotnet-sos | win-arm | Download |
| dotnet-stack | win-arm | Download |
| dotnet-trace | win-arm | Download |
| dotnet-counters | win-arm64 | Download |
| dotnet-dump | win-arm64 | Download |
| dotnet-gcdump | win-arm64 | Download |
| dotnet-sos | win-arm64 | Download |
| dotnet-stack | win-arm64 | [Download](https://download.visualstudio.microsoft.com/download/pr/20240103.1/2ECBA00786ED414C41FAA4AF2C43D126F6D834... |