Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

WMI CPU Load / Processor Queue 

root@klappanas:/# grep -A5 "CPULOAD" /home/anastasios/git/check_mk/agents/wnx/src/engine/providers/wmi.cpp
// WMI CPULOAD group
{"system_perf", //
{kWmiPathStd, L"Win32_PerfRawData_PerfOS_System"}},

{"computer_system", //
{kWmiPathStd, L"Win32_ComputerSystem"}},

Get-WmiObject -class Win32_PerfRawData_PerfOS_System -computername  WIN-MOP95J96UQA -namespace   root\cimv2 |Format-List *

Get-WmiObject -class Win32_ComputerSystem | Format-List *


Measure-Command {Get-WmiObject -class Win32_PerfRawData_PerfOS_System -computername WIN-MOP95J96UQA -namespace root\cimv2 |Format-List *}
Measure-Command {Get-WmiObject -class Win32_ComputerSystem | Format-List *}

  • No labels