Contact Info

Crumbtrail

ActiveXperts.com » Administration » Scripts » WMI Performance Counters » VBScript

HyperVHypervisorLogicalProcessor - WMI sample in VBScript

The foundations for Manageability in Windows 2019/2012/2008/ and Windows 10/8/7/Vista/XP are Windows Management Instrumentation (WMI; formerly WBEM) and WMI extensions for Windows Driver Model (WDM).

ActiveXperts Network Monitor provides the ability to build monitor check routines based on WMI. ActiveXperts has collected more than a hundred WMI samples. You can use these samples as a base for new check routines you can write yourself.

On this site, you can find many WMI samples.

The HyperVHypervisorLogicalProcessor WMI class can be used in ActiveXperts Network Monitor to monitor your servers.


HyperVHypervisorLogicalProcessor

Example(s)

Set objWMIService = GetObject("winmgmts:\\.\root\cimv2")

Set colItems = objWMIService.ExecQuery("Select * From Win32_PerfFormattedData_HvStats_HyperVHypervisorLogicalProcessor")

For Each objItem in colItems
	WScript.Echo "C1TransitionsPersec:" & objItem.C1TransitionsPersec
	WScript.Echo "C2TransitionsPersec:" & objItem.C2TransitionsPersec
	WScript.Echo "C3TransitionsPersec:" & objItem.C3TransitionsPersec
	WScript.Echo "Caption:" & objItem.Caption
	WScript.Echo "ContextSwitchesPersec:" & objItem.ContextSwitchesPersec
	WScript.Echo "Description:" & objItem.Description
	WScript.Echo "Frequency_Object:" & objItem.Frequency_Object
	WScript.Echo "Frequency_PerfTime:" & objItem.Frequency_PerfTime
	WScript.Echo "Frequency_Sys100NS:" & objItem.Frequency_Sys100NS
	WScript.Echo "HardwareInterruptsPersec:" & objItem.HardwareInterruptsPersec
	WScript.Echo "InterProcessorInterruptsPersec:" & objItem.InterProcessorInterruptsPersec
	WScript.Echo "InterProcessorInterruptsSentPersec:" & objItem.InterProcessorInterruptsSentPersec
	WScript.Echo "MonitorTransitionCost:" & objItem.MonitorTransitionCost
	WScript.Echo "Name:" & objItem.Name
	WScript.Echo "PercentC1Time:" & objItem.PercentC1Time
	WScript.Echo "PercentC2Time:" & objItem.PercentC2Time
	WScript.Echo "PercentC3Time:" & objItem.PercentC3Time
	WScript.Echo "PercentGuestRunTime:" & objItem.PercentGuestRunTime
	WScript.Echo "PercentHypervisorRunTime:" & objItem.PercentHypervisorRunTime
	WScript.Echo "PercentIdleTime:" & objItem.PercentIdleTime
	WScript.Echo "PercentTotalRunTime:" & objItem.PercentTotalRunTime
	WScript.Echo "SchedulerInterruptsPersec:" & objItem.SchedulerInterruptsPersec
	WScript.Echo "TimerInterruptsPersec:" & objItem.TimerInterruptsPersec
	WScript.Echo "Timestamp_Object:" & objItem.Timestamp_Object
	WScript.Echo "Timestamp_PerfTime:" & objItem.Timestamp_PerfTime
	WScript.Echo "Timestamp_Sys100NS:" & objItem.Timestamp_Sys100NS
	WScript.Echo "TotalInterruptsPersec:" & objItem.TotalInterruptsPersec
	WScript.Echo ""
	WScript.Echo "########"
	WScript.Echo ""
Next