我正在对分配给VM的CPU浪费进行监控。
我正在使用笔记本电脑作为测试。我找到了一些要使用的代码
Get-Counter -ComputerName LID10022830 '\Process(*)\% Processor Time' `
| Select-Object -ExpandProperty countersamples `
| Select-Object -Property instancename, cookedvalue `
| Sort-Object -Property cookedvalue -Descending | Select-Object -First 2 `
| ft InstanceName,@{L='CPU';E={($_.Cookedvalue/100).toString('P')}} -AutoSize
我的测试系统具有以下内容:
InstanceName CPU
------------ ---
_total 396.21%
idle 172.47%
我可以说笔记本电脑运行时分配了43.4%的CPU吗?