Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Latest commit

 

History

History
14 lines (10 loc) · 1004 Bytes

processes.md

File metadata and controls

14 lines (10 loc) · 1004 Bytes

Processes

The Processes API enables enumeration of the processes that dotnet monitor can detect and allows for obtaining their metadata (such as their names and environment variables).

Note

Process information (IDs, names, environment, etc) may change between invocations of these APIs. Processes may start or stop between API invocations, causing this information to change.

Operation Description
Get Process Gets detailed information about a specified process.
Get Process Environment .NET 5+ Gets the environment block of a specified process.
.NET Core 3.1 Not supported.
List Processes Lists the processes that are available from which diagnostic information can be obtained.

The dotnet monitor tool is able to detect .NET Core 3.1 and .NET 5+ applications. When connecting to a .NET Core 3.1 application, some information may not be available and is called out in the documentation.