6 references to CpuUsage
Microsoft.Extensions.Diagnostics.ResourceMonitoring (2)
Windows\WindowsSnapshotProvider.cs (2)
99var cpuUsage = Environment.CpuUsage; 118return Environment.CpuUsage.TotalTime.Ticks;
System.Diagnostics.DiagnosticSource (1)
System\Diagnostics\Metrics\RuntimeMetrics.cs (1)
179Environment.ProcessCpuUsage processCpuUsage = Environment.CpuUsage;
System.Diagnostics.Process (3)
System\Diagnostics\Process.Linux.cs (3)
56get => IsCurrentProcess ? Environment.CpuUsage.PrivilegedTime : TicksToTimeSpan(GetStat().stime); 134return Environment.CpuUsage.TotalTime; 151get => IsCurrentProcess ? Environment.CpuUsage.UserTime : TicksToTimeSpan(GetStat().utime);