In .NET Core, how to get the CPU usage and Virtual Memory for a given process?
Google search result reveals that PerformanceCounter and DriverInfo class could do the
I just typed in 'get all processes in c#' into google and found this:
Process[] processlist = Process.GetProcesses();
foreach (Process theprocess in processlist)
{
}
i quickly tested in asp.net core 2.2 and it works fine using System.Diagnostics; However i used windows 10 pro to test it. So i dont know if it will work with other operating systems.
Source: https://www.howtogeek.com/howto/programming/get-a-list-of-running-processes-in-c/