2013-10-09 1 views

답변

1

하위 프로세스 InstanceName은 #n이 추가 된 상위 이름입니다. 이것으로 도움이 될 것입니다.

(new PerformanceCounterCategory("Process")) 
.GetInstanceNames() 
.Where(a => a.StartsWith("chrome")) 
.Select(a => new PerformanceCounter("Process", "% Processor Time", a).NextValue()) 
.Sum() 
: 다음은 모든 크롬의 프로세스에 프로세서 시간의 합을 얻는다