RequestsPerSec - property in ROOT\CIMV2 namespace

RequestsPerSec in other namespaces

List of classes with RequestsPerSec local property in ROOT\CIMV2 namespace

propertyClassOrigin
RequestsPerSecWin32_PerfFormattedData_ASP_ActiveServerPagesWin32_PerfFormattedData_ASP_ActiveServerPages
RequestsPerSecWin32_PerfFormattedData_ASPNET_ASPNETApplicationsWin32_PerfFormattedData_ASPNET_ASPNETApplications
RequestsPerSecWin32_PerfFormattedData_ASPNET2050727_ASPNETAppsv2050727Win32_PerfFormattedData_ASPNET2050727_ASPNETAppsv2050727
RequestsPerSecWin32_PerfFormattedData_ASPNET4030319_ASPNETAppsv4030319Win32_PerfFormattedData_ASPNET4030319_ASPNETAppsv4030319
RequestsPerSecWin32_PerfFormattedData_CertSvc_CertificationAuthorityWin32_PerfFormattedData_CertSvc_CertificationAuthority
RequestsPerSecWin32_PerfFormattedData_Counters_SMBServerSessionsWin32_PerfFormattedData_Counters_SMBServerSessions
RequestsPerSecWin32_PerfFormattedData_Counters_SMBServerSharesWin32_PerfFormattedData_Counters_SMBServerShares
RequestsPerSecWin32_PerfFormattedData_dhcpserver_DHCPServerWin32_PerfFormattedData_dhcpserver_DHCPServer
RequestsPerSecWin32_PerfFormattedData_dhcpserver_DHCPServerv6Win32_PerfFormattedData_dhcpserver_DHCPServerv6
RequestsPerSecWin32_PerfFormattedData_MSRS2014WebService_MSRS2014WebServiceWin32_PerfFormattedData_MSRS2014WebService_MSRS2014WebService
RequestsPerSecWin32_PerfFormattedData_MSRS2014WindowsService_MSRS2014WindowsServiceWin32_PerfFormattedData_MSRS2014WindowsService_MSRS2014WindowsService
RequestsPerSecWin32_PerfFormattedData_ReportServer_ReportServerServiceWin32_PerfFormattedData_ReportServer_ReportServerService
RequestsPerSecWin32_PerfFormattedData_W3SVCW3WPCounterProvider_W3SVCW3WPWin32_PerfFormattedData_W3SVCW3WPCounterProvider_W3SVCW3WP
RequestsPerSecWin32_PerfRawData_ASP_ActiveServerPagesWin32_PerfRawData_ASP_ActiveServerPages
RequestsPerSecWin32_PerfRawData_ASPNET_ASPNETApplicationsWin32_PerfRawData_ASPNET_ASPNETApplications
RequestsPerSecWin32_PerfRawData_ASPNET2050727_ASPNETAppsv2050727Win32_PerfRawData_ASPNET2050727_ASPNETAppsv2050727
RequestsPerSecWin32_PerfRawData_ASPNET4030319_ASPNETAppsv4030319Win32_PerfRawData_ASPNET4030319_ASPNETAppsv4030319
RequestsPerSecWin32_PerfRawData_ASPNET642050727_ASPNETAppsv2050727Win32_PerfRawData_ASPNET642050727_ASPNETAppsv2050727
RequestsPerSecWin32_PerfRawData_CertSvc_CertificationAuthorityWin32_PerfRawData_CertSvc_CertificationAuthority
RequestsPerSecWin32_PerfRawData_Counters_SMBServerSessionsWin32_PerfRawData_Counters_SMBServerSessions
RequestsPerSecWin32_PerfRawData_Counters_SMBServerSharesWin32_PerfRawData_Counters_SMBServerShares
RequestsPerSecWin32_PerfRawData_dhcpserver_DHCPServerWin32_PerfRawData_dhcpserver_DHCPServer
RequestsPerSecWin32_PerfRawData_dhcpserver_DHCPServerv6Win32_PerfRawData_dhcpserver_DHCPServerv6
RequestsPerSecWin32_PerfRawData_MSRS2014WebService_MSRS2014WebServiceWin32_PerfRawData_MSRS2014WebService_MSRS2014WebService
RequestsPerSecWin32_PerfRawData_MSRS2014WindowsService_MSRS2014WindowsServiceWin32_PerfRawData_MSRS2014WindowsService_MSRS2014WindowsService
RequestsPerSecWin32_PerfRawData_ReportServer_ReportServerServiceWin32_PerfRawData_ReportServer_ReportServerService
RequestsPerSecWin32_PerfRawData_W3SVCW3WPCounterProvider_W3SVCW3WPWin32_PerfRawData_W3SVCW3WPCounterProvider_W3SVCW3WP

Code samples for RequestsPerSec property

Get instance of WMI class using GetObject, RequestsPerSec property of Win32_PerfFormattedData_CertSvc_CertificationAuthority

Short VBS code - get a single specified instance of Win32_PerfFormattedData_CertSvc_CertificationAuthority class or get a default unnamed instance (singleton) of the class, using one single command GetObject with exact path of the wmi object.

'https://wutils.com/wmi/
Dim wmiObject
Set wmiObject = GetObject( _
 "WINMGMTS:\\.\ROOT\cimv2:" + _
 "Win32_PerfFormattedData_CertSvc_CertificationAuthority.Name=""_Total""")
Wscript.Echo wmiObject.RequestsPerSec 'or other property name, see properties
See more VBS samples of Win32_PerfFormattedData_CertSvc_CertificationAuthority class

WMI query - sample windows WQL with C#, RequestsPerSec property of Win32_PerfFormattedData_CertSvc_CertificationAuthority

Get a specified instance of Win32_PerfFormattedData_CertSvc_CertificationAuthority by a key, get a default unnamed instance (singleton) of the class or list instances of the class by wmi query using this c# sample code.
See in another language: VBScript, VB.Net.
//https://wutils.com/wmi/

//Project -> Add reference -> System.Management
//using System.Management;

//create a management scope object
ManagementScope scope = new ManagementScope("\\\\.\\ROOT\\cimv2");

//create object query
ObjectQuery query = new ObjectQuery("SELECT * FROM Win32_PerfFormattedData_CertSvc_CertificationAuthority Where Name=\"_Total\"");

//create object searcher
ManagementObjectSearcher searcher =
                        new ManagementObjectSearcher(scope, query);

//get a collection of WMI objects
ManagementObjectCollection queryCollection = searcher.Get();

//enumerate the collection.
foreach (ManagementObject m in queryCollection) 
{
  // access properties of the WMI object
  Console.WriteLine("RequestsPerSec : {0}", m["RequestsPerSec"]);
  
}

WMI query - sample windows WQL with VB.Net, RequestsPerSec property of Win32_PerfFormattedData_CertSvc_CertificationAuthority

Get a specified instance of Win32_PerfFormattedData_CertSvc_CertificationAuthority by a key, get a default unnamed instance (singleton) of the class or list instances of the class by wmi query using this VB.Net sample code.
See in another language: VBScript, C#
'Project -> Add reference -> System.Management
'Imports System.Management

'Get the namespace management scope
Dim Scope As New ManagementScope("\\.\ROOT\cimv2")

'Get a result of WML query 
Dim Query As New ObjectQuery("SELECT * FROM Win32_PerfFormattedData_CertSvc_CertificationAuthority Where Name="_Total"")

'Create object searcher
Dim Searcher As New ManagementObjectSearcher(Scope, Query)

'Get a collection of WMI objects
Dim queryCollection As ManagementObjectCollection = Searcher.Get

'Enumerate wmi object 
For Each mObject As ManagementObject In queryCollection
  'write out some property value
  Console.WriteLine("RequestsPerSec : {0}", mObject("RequestsPerSec"))
Next
comments powered by Disqus
WUtils.com