Search notes:

PowerShell: get all performance counters

This script prints all(?) currently installed Performance Counters.
foreach ($counterSet in get-counter -listSet * | sort-object counterSetName) {

   "$($counterSet.counterSetName) ($($counterSet.description))"
   ''

   foreach ($counter in $counterSet.counter) {
      "    $counter"
   }
   ''

}
Github repository about-PowerShell, path: /cmdlets/counter/get/all-counters.ps1
.NET CLR Data (.Net CLR Data)

    \.NET CLR Data\SqlClient: Current # pooled and nonpooled connections
    \.NET CLR Data\SqlClient: Current # pooled connections
    \.NET CLR Data\SqlClient: Current # connection pools
    \.NET CLR Data\SqlClient: Peak # pooled connections
    \.NET CLR Data\SqlClient: Total # failed connects
    \.NET CLR Data\SqlClient: Total # failed commands

.NET CLR Exceptions (Runtime statistics on CLR exception handling.)

    \.NET CLR Exceptions(*)\# of Exceps Thrown
    \.NET CLR Exceptions(*)\# of Exceps Thrown / sec
    \.NET CLR Exceptions(*)\# of Filters / sec
    \.NET CLR Exceptions(*)\# of Finallys / sec
    \.NET CLR Exceptions(*)\Throw To Catch Depth / sec

.NET CLR Interop (Stats for CLR interop.)

    \.NET CLR Interop(*)\# of CCWs
    \.NET CLR Interop(*)\# of Stubs
    \.NET CLR Interop(*)\# of marshalling
    \.NET CLR Interop(*)\# of TLB imports / sec
    \.NET CLR Interop(*)\# of TLB exports / sec

.NET CLR Jit (Stats for CLR Jit.)

    \.NET CLR Jit(*)\# of Methods Jitted
    \.NET CLR Jit(*)\# of IL Bytes Jitted
    \.NET CLR Jit(*)\Total # of IL Bytes Jitted
    \.NET CLR Jit(*)\IL Bytes Jitted / sec
    \.NET CLR Jit(*)\Standard Jit Failures
    \.NET CLR Jit(*)\% Time in Jit

.NET CLR Loading (Statistics for CLR Class Loader.)

    \.NET CLR Loading(*)\Current Classes Loaded
    \.NET CLR Loading(*)\Total Classes Loaded
    \.NET CLR Loading(*)\Rate of Classes Loaded
    \.NET CLR Loading(*)\Current appdomains
    \.NET CLR Loading(*)\Total Appdomains
    \.NET CLR Loading(*)\Rate of appdomains
    \.NET CLR Loading(*)\Current Assemblies
    \.NET CLR Loading(*)\Total Assemblies
    \.NET CLR Loading(*)\Rate of Assemblies
    \.NET CLR Loading(*)\% Time Loading
    \.NET CLR Loading(*)\Assembly Search Length
    \.NET CLR Loading(*)\Total # of Load Failures
    \.NET CLR Loading(*)\Rate of Load Failures
    \.NET CLR Loading(*)\Bytes in Loader Heap
    \.NET CLR Loading(*)\Total appdomains unloaded
    \.NET CLR Loading(*)\Rate of appdomains unloaded

.NET CLR LocksAndThreads (Stats for CLR Locks and Threads.)

    \.NET CLR LocksAndThreads(*)\Total # of Contentions
    \.NET CLR LocksAndThreads(*)\Contention Rate / sec
    \.NET CLR LocksAndThreads(*)\Current Queue Length
    \.NET CLR LocksAndThreads(*)\Queue Length Peak
    \.NET CLR LocksAndThreads(*)\Queue Length / sec
    \.NET CLR LocksAndThreads(*)\# of current logical Threads
    \.NET CLR LocksAndThreads(*)\# of current physical Threads
    \.NET CLR LocksAndThreads(*)\# of current recognized threads
    \.NET CLR LocksAndThreads(*)\# of total recognized threads
    \.NET CLR LocksAndThreads(*)\rate of recognized threads / sec

.NET CLR Memory (Counters for CLR Garbage Collected heap.)

    \.NET CLR Memory(*)\# Gen 0 Collections
    \.NET CLR Memory(*)\# Gen 1 Collections
    \.NET CLR Memory(*)\# Gen 2 Collections
    \.NET CLR Memory(*)\Promoted Memory from Gen 0
    \.NET CLR Memory(*)\Promoted Memory from Gen 1
    \.NET CLR Memory(*)\Gen 0 Promoted Bytes/Sec
    \.NET CLR Memory(*)\Gen 1 Promoted Bytes/Sec
    \.NET CLR Memory(*)\Promoted Finalization-Memory from Gen 0
    \.NET CLR Memory(*)\Process ID
    \.NET CLR Memory(*)\Gen 0 heap size
    \.NET CLR Memory(*)\Gen 1 heap size
    \.NET CLR Memory(*)\Gen 2 heap size
    \.NET CLR Memory(*)\Large Object Heap size
    \.NET CLR Memory(*)\Finalization Survivors
    \.NET CLR Memory(*)\# GC Handles
    \.NET CLR Memory(*)\Allocated Bytes/sec
    \.NET CLR Memory(*)\# Induced GC
    \.NET CLR Memory(*)\% Time in GC
    \.NET CLR Memory(*)\# Bytes in all Heaps
    \.NET CLR Memory(*)\# Total committed Bytes
    \.NET CLR Memory(*)\# Total reserved Bytes
    \.NET CLR Memory(*)\# of Pinned Objects
    \.NET CLR Memory(*)\# of Sink Blocks in use

.NET CLR Networking (Help not available.)

    \.NET CLR Networking\Connections Established
    \.NET CLR Networking\Bytes Received
    \.NET CLR Networking\Bytes Sent
    \.NET CLR Networking\Datagrams Received
    \.NET CLR Networking\Datagrams Sent

.NET CLR Networking 4.0.0.0 (Counters for classes in the System.Net namespace.)

    \.NET CLR Networking 4.0.0.0(*)\Connections Established
    \.NET CLR Networking 4.0.0.0(*)\Bytes Received
    \.NET CLR Networking 4.0.0.0(*)\Bytes Sent
    \.NET CLR Networking 4.0.0.0(*)\Datagrams Received
    \.NET CLR Networking 4.0.0.0(*)\Datagrams Sent
    \.NET CLR Networking 4.0.0.0(*)\HttpWebRequests Created/Sec
    \.NET CLR Networking 4.0.0.0(*)\HttpWebRequests Average Lifetime
    \.NET CLR Networking 4.0.0.0(*)\HttpWebRequests Queued/Sec
    \.NET CLR Networking 4.0.0.0(*)\HttpWebRequests Average Queue Time
    \.NET CLR Networking 4.0.0.0(*)\HttpWebRequests Aborted/Sec
    \.NET CLR Networking 4.0.0.0(*)\HttpWebRequests Failed/Sec

.NET CLR Remoting (Stats for CLR Remoting.)

    \.NET CLR Remoting(*)\Remote Calls/sec
    \.NET CLR Remoting(*)\Total Remote Calls
    \.NET CLR Remoting(*)\Channels
    \.NET CLR Remoting(*)\Context Proxies
    \.NET CLR Remoting(*)\Context-Bound Classes Loaded
    \.NET CLR Remoting(*)\Context-Bound Objects Alloc / sec
    \.NET CLR Remoting(*)\Contexts

.NET CLR Security (Stats for CLR Security.)

    \.NET CLR Security(*)\Total Runtime Checks
    \.NET CLR Security(*)\% Time Sig. Authenticating
    \.NET CLR Security(*)\# Link Time Checks
    \.NET CLR Security(*)\% Time in RT checks
    \.NET CLR Security(*)\Stack Walk Depth

.NET Data Provider for Oracle (Counters for System.Data.OracleClient)

    \.NET Data Provider for Oracle(*)\HardConnectsPerSecond
    \.NET Data Provider for Oracle(*)\HardDisconnectsPerSecond
    \.NET Data Provider for Oracle(*)\SoftConnectsPerSecond
    \.NET Data Provider for Oracle(*)\SoftDisconnectsPerSecond
    \.NET Data Provider for Oracle(*)\NumberOfNonPooledConnections
    \.NET Data Provider for Oracle(*)\NumberOfPooledConnections
    \.NET Data Provider for Oracle(*)\NumberOfActiveConnectionPoolGroups
    \.NET Data Provider for Oracle(*)\NumberOfInactiveConnectionPoolGroups
    \.NET Data Provider for Oracle(*)\NumberOfActiveConnectionPools
    \.NET Data Provider for Oracle(*)\NumberOfInactiveConnectionPools
    \.NET Data Provider for Oracle(*)\NumberOfActiveConnections
    \.NET Data Provider for Oracle(*)\NumberOfFreeConnections
    \.NET Data Provider for Oracle(*)\NumberOfStasisConnections
    \.NET Data Provider for Oracle(*)\NumberOfReclaimedConnections

.NET Data Provider for SqlServer (Counters for System.Data.SqlClient)

    \.NET Data Provider for SqlServer(*)\HardConnectsPerSecond
    \.NET Data Provider for SqlServer(*)\HardDisconnectsPerSecond
    \.NET Data Provider for SqlServer(*)\SoftConnectsPerSecond
    \.NET Data Provider for SqlServer(*)\SoftDisconnectsPerSecond
    \.NET Data Provider for SqlServer(*)\NumberOfNonPooledConnections
    \.NET Data Provider for SqlServer(*)\NumberOfPooledConnections
    \.NET Data Provider for SqlServer(*)\NumberOfActiveConnectionPoolGroups
    \.NET Data Provider for SqlServer(*)\NumberOfInactiveConnectionPoolGroups
    \.NET Data Provider for SqlServer(*)\NumberOfActiveConnectionPools
    \.NET Data Provider for SqlServer(*)\NumberOfInactiveConnectionPools
    \.NET Data Provider for SqlServer(*)\NumberOfActiveConnections
    \.NET Data Provider for SqlServer(*)\NumberOfFreeConnections
    \.NET Data Provider for SqlServer(*)\NumberOfStasisConnections
    \.NET Data Provider for SqlServer(*)\NumberOfReclaimedConnections

.NET Memory Cache 4.0 (System.Runtime.Caching.MemoryCache Performance Counters)

    \.NET Memory Cache 4.0(*)\Cache Hits
    \.NET Memory Cache 4.0(*)\Cache Misses
    \.NET Memory Cache 4.0(*)\Cache Hit Ratio
    \.NET Memory Cache 4.0(*)\Cache Trims
    \.NET Memory Cache 4.0(*)\Cache Entries
    \.NET Memory Cache 4.0(*)\Cache Turnover Rate

AppV Client Streamed Data Percentage (Size of data streamed to disk for each package on the system.)

    \AppV Client Streamed Data Percentage(*)\Primary Feature % Streamed

Authorization Manager Applications (The set of Counters for Authorization Manager application object)

    \Authorization Manager Applications(*)\Number of Scopes loaded in memory
    \Authorization Manager Applications(*)\Total number of scopes

BitLocker (BitLocker Drive Encryption performance counters)

    \BitLocker(*)\Write Subrequests/sec
    \BitLocker(*)\Write Requests/sec
    \BitLocker(*)\Read Subrequests/sec
    \BitLocker(*)\Read Requests/sec
    \BitLocker(*)\Max Write Split Size
    \BitLocker(*)\Min Write Split Size
    \BitLocker(*)\Max Read Split Size
    \BitLocker(*)\Min Read Split Size

Bluetooth Device (Counters related to a remote Bluetooth device)

    \Bluetooth Device(*)\SCO bytes read/sec
    \Bluetooth Device(*)\LE ACL bytes read/sec
    \Bluetooth Device(*)\Classic ACL bytes read/sec
    \Bluetooth Device(*)\SCO bytes written/sec
    \Bluetooth Device(*)\LE ACL bytes written/sec
    \Bluetooth Device(*)\Classic ACL bytes written/sec

Bluetooth Radio (Counters related to a local Bluetooth radio)

    \Bluetooth Radio(*)\LE Scan Interval - Coded Phy
    \Bluetooth Radio(*)\LE Scan Window - Coded Phy
    \Bluetooth Radio(*)\LE Scan Duty Cycle (%) - Coded Phy
    \Bluetooth Radio(*)\Inquiry Scan Interval
    \Bluetooth Radio(*)\Inquiry Scan Window
    \Bluetooth Radio(*)\Inquiry Scan Duty Cycle (%)
    \Bluetooth Radio(*)\Page Scan Interval
    \Bluetooth Radio(*)\Page Scan Window
    \Bluetooth Radio(*)\Page Scan Duty Cycle (%)
    \Bluetooth Radio(*)\LE Scan Interval - Uncoded 1M Phy
    \Bluetooth Radio(*)\LE Scan Window - Uncoded 1M Phy
    \Bluetooth Radio(*)\LE Scan Duty Cycle (%) - Uncoded 1M Phy
    \Bluetooth Radio(*)\Classic ACL write credits
    \Bluetooth Radio(*)\LE ACL write credits
    \Bluetooth Radio(*)\ACL flush events/sec
    \Bluetooth Radio(*)\Sideband SCO Connections
    \Bluetooth Radio(*)\SCO Connections
    \Bluetooth Radio(*)\LE ACL Connections
    \Bluetooth Radio(*)\Classic ACL Connections
    \Bluetooth Radio(*)\SCO bytes read/sec
    \Bluetooth Radio(*)\LE ACL bytes read/sec
    \Bluetooth Radio(*)\Classic ACL bytes read/sec
    \Bluetooth Radio(*)\SCO bytes written/sec
    \Bluetooth Radio(*)\LE ACL bytes written/sec
    \Bluetooth Radio(*)\Classic ACL bytes written/sec

BranchCache (Counters for measuring bandwidth and latency for BranchCache.)

    \BranchCache\Local Cache: Average access time
    \BranchCache\Publication Cache: Published contents
    \BranchCache\Hosted Cache: Segment offers queue size
    \BranchCache\Discovery: Successful discoveries
    \BranchCache\Retrieval: Average branch rate
    \BranchCache\Hosted Cache: Client file segment offers made
    \BranchCache\Local Cache: Cache partial file segments
    \BranchCache\Local Cache: Cache complete file segments
    \BranchCache\Discovery: Attempted discoveries
    \BranchCache\OTHER: Bytes from server
    \BranchCache\OTHER: Bytes from cache
    \BranchCache\WINHTTP: Bytes from server
    \BranchCache\WINHTTP: Bytes from cache
    \BranchCache\WININET: Bytes from server
    \BranchCache\WININET: Bytes from cache
    \BranchCache\BITS: Bytes from server
    \BranchCache\BITS: Bytes from cache
    \BranchCache\SMB: Bytes from server
    \BranchCache\SMB: Bytes from cache
    \BranchCache\Discovery: Weighted average discovery time
    \BranchCache\Retrieval: Bytes served
    \BranchCache\Retrieval: Bytes from cache
    \BranchCache\Retrieval: Bytes from server

Browser (The Browser performance object consists of counters that measure the rates of announcements, enumerations, and other Browser transmissions.)

    \Browser\Announcements Server/sec
    \Browser\Announcements Domain/sec
    \Browser\Announcements Total/sec
    \Browser\Election Packets/sec
    \Browser\Mailslot Writes/sec
    \Browser\Server List Requests/sec
    \Browser\Enumerations Server/sec
    \Browser\Enumerations Domain/sec
    \Browser\Enumerations Other/sec
    \Browser\Enumerations Total/sec
    \Browser\Missed Server Announcements
    \Browser\Missed Mailslot Datagrams
    \Browser\Missed Server List Requests
    \Browser\Server Announce Allocations Failed/sec
    \Browser\Mailslot Allocations Failed
    \Browser\Mailslot Receives Failed
    \Browser\Mailslot Writes Failed
    \Browser\Mailslot Opens Failed/sec
    \Browser\Duplicate Master Announcements
    \Browser\Illegal Datagrams/sec

Cache (The Cache performance object  consists of counters that monitor the file system cache, an area of physical memory that stores recently used data as long as possible to permit access to the data without having to read from the disk.  Because applications typically use the cache, the cache is monitored as an indicator of application I/O operations.  When memory is plentiful, the cache can grow, but when memory is scarce, the cache can become too small to be effective.)

    \Cache\Data Maps/sec
    \Cache\Sync Data Maps/sec
    \Cache\Async Data Maps/sec
    \Cache\Data Map Hits %
    \Cache\Data Map Pins/sec
    \Cache\Pin Reads/sec
    \Cache\Sync Pin Reads/sec
    \Cache\Async Pin Reads/sec
    \Cache\Pin Read Hits %
    \Cache\Copy Reads/sec
    \Cache\Sync Copy Reads/sec
    \Cache\Async Copy Reads/sec
    \Cache\Copy Read Hits %
    \Cache\MDL Reads/sec
    \Cache\Sync MDL Reads/sec
    \Cache\Async MDL Reads/sec
    \Cache\MDL Read Hits %
    \Cache\Read Aheads/sec
    \Cache\Fast Reads/sec
    \Cache\Sync Fast Reads/sec
    \Cache\Async Fast Reads/sec
    \Cache\Fast Read Resource Misses/sec
    \Cache\Fast Read Not Possibles/sec
    \Cache\Lazy Write Flushes/sec
    \Cache\Lazy Write Pages/sec
    \Cache\Data Flushes/sec
    \Cache\Data Flush Pages/sec
    \Cache\Dirty Pages
    \Cache\Dirty Page Threshold

Client Side Caching (Performance counters for SMB BranchCache for reduced bandwidth consumption)

    \Client Side Caching\Application Bytes Read From Server (Not Cached)
    \Client Side Caching\Application Bytes Read From Server
    \Client Side Caching\Application Bytes Read From Cache
    \Client Side Caching\Prefetch Bytes Read From Server
    \Client Side Caching\Prefetch Bytes Read From Cache
    \Client Side Caching\Prefetch Operations Queued
    \Client Side Caching\SMB BranchCache Hash Bytes Received
    \Client Side Caching\SMB BranchCache Hashes Received
    \Client Side Caching\SMB BranchCache Hashes Requested
    \Client Side Caching\SMB BranchCache Bytes Requested From Server
    \Client Side Caching\SMB BranchCache Bytes Published
    \Client Side Caching\SMB BranchCache Bytes Received
    \Client Side Caching\SMB BranchCache Bytes Requested

Distributed Routing Table (The Distributed Routing Table (DRT) performance object consists of counters that monitor the local DRT cache as well as counters that measure the rates at which DRT protocol messages are sent and received.)

    \Distributed Routing Table(*)\Unrecognized Messages Received
    \Distributed Routing Table(*)\Lookup Messages Received/second
    \Distributed Routing Table(*)\Lookup Messages Sent/second
    \Distributed Routing Table(*)\Ack Messages Received/second
    \Distributed Routing Table(*)\Ack Messages Sent/second
    \Distributed Routing Table(*)\Authority Messages Received/second
    \Distributed Routing Table(*)\Authority Sent/second
    \Distributed Routing Table(*)\Inquire Messages Received/second
    \Distributed Routing Table(*)\Inquire Messages Sent/second
    \Distributed Routing Table(*)\Flood Messages Received/second
    \Distributed Routing Table(*)\Flood Messages Sent/second
    \Distributed Routing Table(*)\Request Messages Received/second
    \Distributed Routing Table(*)\Request Messages Sent/second
    \Distributed Routing Table(*)\Advertise Messages Received/second
    \Distributed Routing Table(*)\Advertise Messages Sent/second
    \Distributed Routing Table(*)\Solicit Messages Received/second
    \Distributed Routing Table(*)\Solicit Messages Sent/second
    \Distributed Routing Table(*)\Receive Failures
    \Distributed Routing Table(*)\Send Failures
    \Distributed Routing Table(*)\Stale Cache Entries
    \Distributed Routing Table(*)\Estimated cloud size
    \Distributed Routing Table(*)\Average Bytes/second Received
    \Distributed Routing Table(*)\Average Bytes/second Sent
    \Distributed Routing Table(*)\Cache Entries
    \Distributed Routing Table(*)\Searches
    \Distributed Routing Table(*)\Registrations

DNS64 Global (Statistics of DNS64 on this machine.)

    \DNS64 Global(*)\AAAA - Synthesized records
    \DNS64 Global(*)\Other queries - Failed
    \DNS64 Global(*)\Other queries - Successful
    \DNS64 Global(*)\IP6.ARPA queries - Matched
    \DNS64 Global(*)\AAAA queries - Failed
    \DNS64 Global(*)\AAAA queries - Successful

Energy Meter (The Energy Meter performance object measures total energy consumption.)

    \Energy Meter(*)\Power
    \Energy Meter(*)\Energy
    \Energy Meter(*)\Time

Event Log (Event Log)

    \Event Log\Event filter operations/sec
    \Event Log\Active subscriptions
    \Event Log\ELF RPC calls/sec
    \Event Log\Events/sec
    \Event Log\WEVT RPC calls/sec
    \Event Log\Enabled Channels

Event Tracing for Windows (The counters in this collection refer to system-wide metrics about the performance of the Event Tracing for Windows subsystem.)

    \Event Tracing for Windows\Total Memory Usage --- Non-Paged Pool
    \Event Tracing for Windows\Total Memory Usage --- Paged Pool
    \Event Tracing for Windows\Total Number of Active Sessions
    \Event Tracing for Windows\Total Number of Distinct Disabled Providers
    \Event Tracing for Windows\Total Number of Distinct Pre-Enabled Providers
    \Event Tracing for Windows\Total Number of Distinct Enabled Providers

Event Tracing for Windows Session (The counters in this collection are related to individual Event Tracing for Windows sessions.)

    \Event Tracing for Windows Session(*)\Number of Real-Time Consumers
    \Event Tracing for Windows Session(*)\Events Lost
    \Event Tracing for Windows Session(*)\Events Logged per sec
    \Event Tracing for Windows Session(*)\Buffer Memory Usage -- Non-Paged Pool
    \Event Tracing for Windows Session(*)\Buffer Memory Usage -- Paged Pool

Fax Service (Fax Service Counter Set)

    \Fax Service\Bytes received
    \Fax Service\Received faxes
    \Fax Service\Received pages
    \Fax Service\Minutes receiving
    \Fax Service\Failed receptions
    \Fax Service\Bytes sent
    \Fax Service\Faxes sent
    \Fax Service\Pages sent
    \Fax Service\Minutes sending
    \Fax Service\Failed outgoing connections
    \Fax Service\Failed faxes transmissions
    \Fax Service\Total bytes
    \Fax Service\Total faxes sent and received
    \Fax Service\Total pages
    \Fax Service\Total minutes sending and receiving

FileSystem Disk Activity (The FileSystem Disk Activity performance counter set consists of counters that measure the aspect of filesystem's IO Activity.  This counter set measures the number of bytes filesystem read from and wrote to the disk drive.)

    \FileSystem Disk Activity(*)\FileSystem Bytes Written
    \FileSystem Disk Activity(*)\FileSystem Bytes Read

Generic IKEv1, AuthIP, and IKEv2 (Generic IKEv1, AuthIP, and IKEv2 is the set of Internet Protocol security (IPsec) Internet Key Exchange Version 1 (IKEv1), Authenticated IP (AuthIP), and Internet Key Exchange Version 2 (IKEv2) counters that are generic and do not apply to a specific Internet Protocol version.)

    \Generic IKEv1, AuthIP, and IKEv2\IKEv2 Quick Mode Negotiation Time
    \Generic IKEv1, AuthIP, and IKEv2\IKEv2 Main Mode Negotiation Time
    \Generic IKEv1, AuthIP, and IKEv2\Failed Negotiations/sec
    \Generic IKEv1, AuthIP, and IKEv2\Failed Negotiations
    \Generic IKEv1, AuthIP, and IKEv2\Successful Negotiations/sec
    \Generic IKEv1, AuthIP, and IKEv2\Successful Negotiations
    \Generic IKEv1, AuthIP, and IKEv2\Invalid Packets Received/sec
    \Generic IKEv1, AuthIP, and IKEv2\Packets Received/sec
    \Generic IKEv1, AuthIP, and IKEv2\Extended Mode Negotiation Time
    \Generic IKEv1, AuthIP, and IKEv2\AuthIP Quick Mode Negotiation Time
    \Generic IKEv1, AuthIP, and IKEv2\IKEv1 Quick Mode Negotiation Time
    \Generic IKEv1, AuthIP, and IKEv2\AuthIP Main Mode Negotiation Time
    \Generic IKEv1, AuthIP, and IKEv2\IKEv1 Main Mode Negotiation Time

GPU Adapter Memory (The memory usage of each adapter)

    \GPU Adapter Memory(*)\Shared Usage
    \GPU Adapter Memory(*)\Dedicated Usage
    \GPU Adapter Memory(*)\Total Committed

GPU Engine (The running time of each gpu engine)

    \GPU Engine(*)\Utilization Percentage
    \GPU Engine(*)\Running Time

GPU Local Adapter Memory (The local memory usage of each adapter)

    \GPU Local Adapter Memory(*)\Local Usage

GPU Non Local Adapter Memory (The non local memory usage of each adapter)

    \GPU Non Local Adapter Memory(*)\Non Local Usage

GPU Process Memory (The memory usage of each process)

    \GPU Process Memory(*)\Shared Usage
    \GPU Process Memory(*)\Dedicated Usage
    \GPU Process Memory(*)\Non Local Usage
    \GPU Process Memory(*)\Local Usage
    \GPU Process Memory(*)\Total Committed

HTTP Service (Set of HTTP service counters)

    \HTTP Service\TotalFlushedUris
    \HTTP Service\UriCacheFlushes
    \HTTP Service\UriCacheMisses
    \HTTP Service\UriCacheHits
    \HTTP Service\TotalUrisCached
    \HTTP Service\CurrentUrisCached

HTTP Service Request Queues (Set of request queue counters)

    \HTTP Service Request Queues(*)\CacheHitRate
    \HTTP Service Request Queues(*)\RejectedRequests
    \HTTP Service Request Queues(*)\RejectionRate
    \HTTP Service Request Queues(*)\ArrivalRate
    \HTTP Service Request Queues(*)\MaxQueueItemAge
    \HTTP Service Request Queues(*)\CurrentQueueSize

HTTP Service Url Groups (Set of URL Group-specific counters)

    \HTTP Service Url Groups(*)\AllRequests
    \HTTP Service Url Groups(*)\HeadRequests
    \HTTP Service Url Groups(*)\GetRequests
    \HTTP Service Url Groups(*)\ConnectionAttempts
    \HTTP Service Url Groups(*)\MaxConnections
    \HTTP Service Url Groups(*)\CurrentConnections
    \HTTP Service Url Groups(*)\BytesTransferredRate
    \HTTP Service Url Groups(*)\BytesReceivedRate
    \HTTP Service Url Groups(*)\BytesSentRate

Hyper-V Dynamic Memory Balancer (This counter set represents the statistics for the Microsoft Dynamic Memory Balancer.)

    \Hyper-V Dynamic Memory Balancer(*)\Available Memory For Balancing
    \Hyper-V Dynamic Memory Balancer(*)\System Current Pressure
    \Hyper-V Dynamic Memory Balancer(*)\Available Memory
    \Hyper-V Dynamic Memory Balancer(*)\Average Pressure

Hyper-V Dynamic Memory Integration Service (This counter set represents the statistics for Dynamic Memory Integration Services)

    \Hyper-V Dynamic Memory Integration Service\Maximum Memory, Mbytes

Hyper-V Dynamic Memory VM (This counter set represents the memory statistics for a Virtual Machine.)

    \Hyper-V Dynamic Memory VM(*)\Guest Available Memory
    \Hyper-V Dynamic Memory VM(*)\Smart Paging Working Set Size
    \Hyper-V Dynamic Memory VM(*)\Memory Remove Operations
    \Hyper-V Dynamic Memory VM(*)\Removed Memory
    \Hyper-V Dynamic Memory VM(*)\Memory Add Operations
    \Hyper-V Dynamic Memory VM(*)\Added Memory
    \Hyper-V Dynamic Memory VM(*)\Guest Visible Physical Memory
    \Hyper-V Dynamic Memory VM(*)\Physical Memory
    \Hyper-V Dynamic Memory VM(*)\Maximum Pressure
    \Hyper-V Dynamic Memory VM(*)\Minimum Pressure
    \Hyper-V Dynamic Memory VM(*)\Average Pressure
    \Hyper-V Dynamic Memory VM(*)\Current Pressure

Hyper-V Hypervisor (Information on the hypervisor.)

    \Hyper-V Hypervisor\HypervisorStartupCost
    \Hyper-V Hypervisor\Platform Idle Transitions
    \Hyper-V Hypervisor\Modern Standby Entries
    \Hyper-V Hypervisor\Monitored Notifications
    \Hyper-V Hypervisor\Virtual Processors
    \Hyper-V Hypervisor\Total Pages
    \Hyper-V Hypervisor\Partitions
    \Hyper-V Hypervisor\Logical Processors

Hyper-V Hypervisor Logical Processor (Information on logical processors.)

    \Hyper-V Hypervisor Logical Processor(*)\Total Interrupts/sec
    \Hyper-V Hypervisor Logical Processor(*)\% Idle Time
    \Hyper-V Hypervisor Logical Processor(*)\% Guest Run Time
    \Hyper-V Hypervisor Logical Processor(*)\% Hypervisor Run Time
    \Hyper-V Hypervisor Logical Processor(*)\% Total Run Time
    \Hyper-V Hypervisor Logical Processor(*)\HWP Request MSR Context Switches/sec
    \Hyper-V Hypervisor Logical Processor(*)\Hypervisor Microarchitectural Buffer Flushes/sec
    \Hyper-V Hypervisor Logical Processor(*)\Hypervisor Immediate L1 Data Cache Flushes/sec
    \Hyper-V Hypervisor Logical Processor(*)\Hypervisor L1 Data Cache Flushes/sec
    \Hyper-V Hypervisor Logical Processor(*)\Hypervisor Branch Predictor Flushes/sec
    \Hyper-V Hypervisor Logical Processor(*)\Posted Interrupt Notifications/sec
    \Hyper-V Hypervisor Logical Processor(*)\Root Vp Index
    \Hyper-V Hypervisor Logical Processor(*)\Processor State Flags
    \Hyper-V Hypervisor Logical Processor(*)\Parking Status
    \Hyper-V Hypervisor Logical Processor(*)\% of Max Frequency
    \Hyper-V Hypervisor Logical Processor(*)\Frequency
    \Hyper-V Hypervisor Logical Processor(*)\% C3 Time
    \Hyper-V Hypervisor Logical Processor(*)\C3 Transitions/sec
    \Hyper-V Hypervisor Logical Processor(*)\% C2 Time
    \Hyper-V Hypervisor Logical Processor(*)\C2 Transitions/sec
    \Hyper-V Hypervisor Logical Processor(*)\% C1 Time
    \Hyper-V Hypervisor Logical Processor(*)\C1 Transitions/sec
    \Hyper-V Hypervisor Logical Processor(*)\Monitor Transition Cost
    \Hyper-V Hypervisor Logical Processor(*)\Inter-Processor Interrupts Sent/sec
    \Hyper-V Hypervisor Logical Processor(*)\Timer Interrupts/sec
    \Hyper-V Hypervisor Logical Processor(*)\Scheduler Interrupts/sec
    \Hyper-V Hypervisor Logical Processor(*)\Inter-Processor Interrupts/sec
    \Hyper-V Hypervisor Logical Processor(*)\Context Switches/sec
    \Hyper-V Hypervisor Logical Processor(*)\Hardware Interrupts/sec

Hyper-V Hypervisor Partition (Information on virtual machines)

    \Hyper-V Hypervisor Partition(*)\Pages Recombined/sec
    \Hyper-V Hypervisor Partition(*)\Pages Shattered/sec
    \Hyper-V Hypervisor Partition(*)\Nested TLB Trimmed Pages/sec
    \Hyper-V Hypervisor Partition(*)\Nested TLB Free List Size
    \Hyper-V Hypervisor Partition(*)\Recommended Nested TLB Size
    \Hyper-V Hypervisor Partition(*)\Nested TLB Size
    \Hyper-V Hypervisor Partition(*)\Skipped Timer Ticks
    \Hyper-V Hypervisor Partition(*)\Device Interrupt Throttle Events
    \Hyper-V Hypervisor Partition(*)\Device DMA Errors
    \Hyper-V Hypervisor Partition(*)\Device Interrupt Errors
    \Hyper-V Hypervisor Partition(*)\I/O TLB Flush Cost
    \Hyper-V Hypervisor Partition(*)\I/O TLB Flushes/sec
    \Hyper-V Hypervisor Partition(*)\Device Interrupt Mappings
    \Hyper-V Hypervisor Partition(*)\Attached Devices
    \Hyper-V Hypervisor Partition(*)\1G device pages
    \Hyper-V Hypervisor Partition(*)\2M device pages
    \Hyper-V Hypervisor Partition(*)\4K device pages
    \Hyper-V Hypervisor Partition(*)\1G GPA pages
    \Hyper-V Hypervisor Partition(*)\2M GPA pages
    \Hyper-V Hypervisor Partition(*)\4K GPA pages
    \Hyper-V Hypervisor Partition(*)\Recommended Virtual TLB Size
    \Hyper-V Hypervisor Partition(*)\Virtual TLB Flush Entires/sec
    \Hyper-V Hypervisor Partition(*)\GPA Space Modifications/sec
    \Hyper-V Hypervisor Partition(*)\GPA Pages
    \Hyper-V Hypervisor Partition(*)\Deposited Pages
    \Hyper-V Hypervisor Partition(*)\Address Spaces
    \Hyper-V Hypervisor Partition(*)\Virtual TLB Pages
    \Hyper-V Hypervisor Partition(*)\Virtual Processors

Hyper-V Hypervisor Root Partition (Information on virtual machines)

    \Hyper-V Hypervisor Root Partition(*)\Pages Recombined/sec
    \Hyper-V Hypervisor Root Partition(*)\Pages Shattered/sec
    \Hyper-V Hypervisor Root Partition(*)\Nested TLB Trimmed Pages/sec
    \Hyper-V Hypervisor Root Partition(*)\Nested TLB Free List Size
    \Hyper-V Hypervisor Root Partition(*)\Recommended Nested TLB Size
    \Hyper-V Hypervisor Root Partition(*)\Nested TLB Size
    \Hyper-V Hypervisor Root Partition(*)\Skipped Timer Ticks
    \Hyper-V Hypervisor Root Partition(*)\Device Interrupt Throttle Events
    \Hyper-V Hypervisor Root Partition(*)\Device DMA Errors
    \Hyper-V Hypervisor Root Partition(*)\Device Interrupt Errors
    \Hyper-V Hypervisor Root Partition(*)\I/O TLB Flush Cost
    \Hyper-V Hypervisor Root Partition(*)\I/O TLB Flushes/sec
    \Hyper-V Hypervisor Root Partition(*)\Device Interrupt Mappings
    \Hyper-V Hypervisor Root Partition(*)\Attached Devices
    \Hyper-V Hypervisor Root Partition(*)\1G device pages
    \Hyper-V Hypervisor Root Partition(*)\2M device pages
    \Hyper-V Hypervisor Root Partition(*)\4K device pages
    \Hyper-V Hypervisor Root Partition(*)\1G GPA pages
    \Hyper-V Hypervisor Root Partition(*)\2M GPA pages
    \Hyper-V Hypervisor Root Partition(*)\4K GPA pages
    \Hyper-V Hypervisor Root Partition(*)\Recommended Virtual TLB Size
    \Hyper-V Hypervisor Root Partition(*)\Virtual TLB Flush Entires/sec
    \Hyper-V Hypervisor Root Partition(*)\GPA Space Modifications/sec
    \Hyper-V Hypervisor Root Partition(*)\GPA Pages
    \Hyper-V Hypervisor Root Partition(*)\Deposited Pages
    \Hyper-V Hypervisor Root Partition(*)\Address Spaces
    \Hyper-V Hypervisor Root Partition(*)\Virtual TLB Pages
    \Hyper-V Hypervisor Root Partition(*)\Virtual Processors

Hyper-V Hypervisor Root Virtual Processor (Information on virtual processors)

    \Hyper-V Hypervisor Root Virtual Processor(*)\Total Virtualization Instructions Emulation Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\Total Virtualization Instructions Emulated/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\% Remote Run Time
    \Hyper-V Hypervisor Root Virtual Processor(*)\Total Intercepts Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\Total Intercepts/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Total Messages/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\% Total Core Run Time
    \Hyper-V Hypervisor Root Virtual Processor(*)\% Guest Idle Time
    \Hyper-V Hypervisor Root Virtual Processor(*)\% Guest Run Time
    \Hyper-V Hypervisor Root Virtual Processor(*)\% Hypervisor Run Time
    \Hyper-V Hypervisor Root Virtual Processor(*)\% Total Run Time
    \Hyper-V Hypervisor Root Virtual Processor(*)\Posted Interrupt Scans/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Posted Interrupt Notifications/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Flush Physical Address List Hypercalls/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Flush Physical Address Space Hypercalls/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Nested TLB Page Table Evictions/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Nested TLB Page Table Reclamations/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\InvVpid Single Address Instruction Emulation Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\InvVpid Single Address Emulation Intercepts/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\InvVpid Single Context Instruction Emulation Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\InvVpid Single Context Emulation Intercepts/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\InvVpid All Context Instruction Emulation Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\InvVpid All Context Emulation Intercepts/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\InvEpt Single Context Instruction Emulation Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\InvEpt Single Context Emulation Intercepts/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\InvEpt All Context Instruction Emulation Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\InvEpt All Context Emulation Intercepts/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Nested SLAT Hard Page Faults Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\Nested SLAT Hard Page Faults/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Nested SLAT Soft Page Faults Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\Nested SLAT Soft Page Faults/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Nested VM Entries Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\Nested VM Entries/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\VMXON Instruction Emulation Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\VMXON Emulation Intercepts/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\VMXOFF Instruction Emulation Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\VMXOFF Emulation Intercepts/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\VMWRITE Instruction Emulation Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\VMWRITE Emulation Intercepts/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\VMREAD Instruction Emulation Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\VMREAD Emulation Intercepts/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\VMPTRST Instruction Emulation Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\VMPTRST Emulation Intercepts/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\VMPTRLD Instruction Emulation Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\VMPTRLD Emulation Intercepts/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\VMCLEAR Instruction Emulation Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\VMCLEAR Emulation Intercepts/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Page Fault Intercepts Forwarding Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\Page Fault Intercepts Forwarded/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Debug Register Accesses Forwarding Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\Debug Register Accesses Forwarded/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Emulated Instructions Forwarding Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\Emulated Instructions Forwarded/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Pending Interrupts Forwarding Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\Pending Interrupts Forwarded/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\External Interrupts Forwarded/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Other Intercepts Forwarding Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\Other Intercepts Forwarded/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\MSR Accesses Forwarding Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\MSR Accesses Forwarded/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\CPUID Instructions Forwarding Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\CPUID Instructions Forwarded/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\MWAIT Instructions Forwarding Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\MWAIT Instructions Forwarded/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\HLT Instructions Forwarding Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\HLT Instructions Forwarded/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\IO Instructions Forwarding Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\IO Instructions Forwarded/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Control Register Accesses Forwarding Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\Control Register Accesses Forwarded/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Page Invalidations Forwarding Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\Page Invalidations Forwarded/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Hypercalls Forwarding Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\Hypercalls Forwarded/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Local I/O TLB Flush Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\Local I/O TLB Flushes/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Global I/O TLB Flush Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\Global I/O TLB Flushes/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Other Reflected Guest Exceptions/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\MBEC Nested Page Table Switches/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Extended Hypercall Intercept Messages/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Extended Hypercalls/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\CPU Wait Time Per Dispatch
    \Hyper-V Hypervisor Root Virtual Processor(*)\Logical Processor Dispatches/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Page Scans/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Nested Page Fault Intercepts Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\Nested Page Fault Intercepts/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Hardware Interrupts/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Virtual Processor Hypercalls/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Virtual MMU Hypercalls/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Virtual Interrupt Hypercalls/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Synthetic Interrupt Hypercalls/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Other Hypercalls/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Long Spin Wait Hypercalls/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Logical Processor Hypercalls/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\GPA Space Hypercalls/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\APIC Self IPIs Sent/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\APIC IPIs Sent/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Virtual Interrupts/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Synthetic Interrupts/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Page Table Write Intercepts/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\APIC TPR Accesses/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Page Table Validations/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Page Table Resets/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Page Table Reclamations/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Page Table Evictions/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Local Flushed GVA Ranges/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Global GVA Range Flushes/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Address Space Flushes/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Address Domain Flushes/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Address Space Switches/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Address Space Evictions/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Logical Processor Migrations/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Page Table Allocations/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Other Messages/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\APIC EOI Accesses/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Memory Intercept Messages/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\IO Intercept Messages/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\APIC MMIO Accesses/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Reflected Guest Page Faults/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Small Page TLB Fills/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Large Page TLB Fills/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Guest Page Table Maps/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\NMI Interrupts Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\NMI Interrupts/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Page Fault Intercepts Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\Page Fault Intercepts/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Debug Register Accesses Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\Debug Register Accesses/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Emulated Instructions Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\Emulated Instructions/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Pending Interrupts Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\Pending Interrupts/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\External Interrupts Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\External Interrupts/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Other Intercepts Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\Other Intercepts/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\MSR Accesses Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\MSR Accesses/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\CPUID Instructions Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\CPUID Instructions/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\MWAIT Instructions Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\MWAIT Instructions/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\HLT Instructions Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\HLT Instructions/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\IO Instructions Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\IO Instructions/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Control Register Accesses Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\Control Register Accesses/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Page Invalidations Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\Page Invalidations/sec
    \Hyper-V Hypervisor Root Virtual Processor(*)\Hypercalls Cost
    \Hyper-V Hypervisor Root Virtual Processor(*)\Hypercalls/sec

Hyper-V Hypervisor Virtual Processor (Information on virtual processors)

    \Hyper-V Hypervisor Virtual Processor(*)\Total Virtualization Instructions Emulation Cost
    \Hyper-V Hypervisor Virtual Processor(*)\Total Virtualization Instructions Emulated/sec
    \Hyper-V Hypervisor Virtual Processor(*)\% Remote Run Time
    \Hyper-V Hypervisor Virtual Processor(*)\Total Intercepts Cost
    \Hyper-V Hypervisor Virtual Processor(*)\Total Intercepts/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Total Messages/sec
    \Hyper-V Hypervisor Virtual Processor(*)\% Total Core Run Time
    \Hyper-V Hypervisor Virtual Processor(*)\% Guest Idle Time
    \Hyper-V Hypervisor Virtual Processor(*)\% Guest Run Time
    \Hyper-V Hypervisor Virtual Processor(*)\% Hypervisor Run Time
    \Hyper-V Hypervisor Virtual Processor(*)\% Total Run Time
    \Hyper-V Hypervisor Virtual Processor(*)\Posted Interrupt Scans/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Posted Interrupt Notifications/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Flush Physical Address List Hypercalls/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Flush Physical Address Space Hypercalls/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Nested TLB Page Table Evictions/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Nested TLB Page Table Reclamations/sec
    \Hyper-V Hypervisor Virtual Processor(*)\InvVpid Single Address Instruction Emulation Cost
    \Hyper-V Hypervisor Virtual Processor(*)\InvVpid Single Address Emulation Intercepts/sec
    \Hyper-V Hypervisor Virtual Processor(*)\InvVpid Single Context Instruction Emulation Cost
    \Hyper-V Hypervisor Virtual Processor(*)\InvVpid Single Context Emulation Intercepts/sec
    \Hyper-V Hypervisor Virtual Processor(*)\InvVpid All Context Instruction Emulation Cost
    \Hyper-V Hypervisor Virtual Processor(*)\InvVpid All Context Emulation Intercepts/sec
    \Hyper-V Hypervisor Virtual Processor(*)\InvEpt Single Context Instruction Emulation Cost
    \Hyper-V Hypervisor Virtual Processor(*)\InvEpt Single Context Emulation Intercepts/sec
    \Hyper-V Hypervisor Virtual Processor(*)\InvEpt All Context Instruction Emulation Cost
    \Hyper-V Hypervisor Virtual Processor(*)\InvEpt All Context Emulation Intercepts/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Nested SLAT Hard Page Faults Cost
    \Hyper-V Hypervisor Virtual Processor(*)\Nested SLAT Hard Page Faults/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Nested SLAT Soft Page Faults Cost
    \Hyper-V Hypervisor Virtual Processor(*)\Nested SLAT Soft Page Faults/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Nested VM Entries Cost
    \Hyper-V Hypervisor Virtual Processor(*)\Nested VM Entries/sec
    \Hyper-V Hypervisor Virtual Processor(*)\VMXON Instruction Emulation Cost
    \Hyper-V Hypervisor Virtual Processor(*)\VMXON Emulation Intercepts/sec
    \Hyper-V Hypervisor Virtual Processor(*)\VMXOFF Instruction Emulation Cost
    \Hyper-V Hypervisor Virtual Processor(*)\VMXOFF Emulation Intercepts/sec
    \Hyper-V Hypervisor Virtual Processor(*)\VMWRITE Instruction Emulation Cost
    \Hyper-V Hypervisor Virtual Processor(*)\VMWRITE Emulation Intercepts/sec
    \Hyper-V Hypervisor Virtual Processor(*)\VMREAD Instruction Emulation Cost
    \Hyper-V Hypervisor Virtual Processor(*)\VMREAD Emulation Intercepts/sec
    \Hyper-V Hypervisor Virtual Processor(*)\VMPTRST Instruction Emulation Cost
    \Hyper-V Hypervisor Virtual Processor(*)\VMPTRST Emulation Intercepts/sec
    \Hyper-V Hypervisor Virtual Processor(*)\VMPTRLD Instruction Emulation Cost
    \Hyper-V Hypervisor Virtual Processor(*)\VMPTRLD Emulation Intercepts/sec
    \Hyper-V Hypervisor Virtual Processor(*)\VMCLEAR Instruction Emulation Cost
    \Hyper-V Hypervisor Virtual Processor(*)\VMCLEAR Emulation Intercepts/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Page Fault Intercepts Forwarding Cost
    \Hyper-V Hypervisor Virtual Processor(*)\Page Fault Intercepts Forwarded/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Debug Register Accesses Forwarding Cost
    \Hyper-V Hypervisor Virtual Processor(*)\Debug Register Accesses Forwarded/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Emulated Instructions Forwarding Cost
    \Hyper-V Hypervisor Virtual Processor(*)\Emulated Instructions Forwarded/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Pending Interrupts Forwarding Cost
    \Hyper-V Hypervisor Virtual Processor(*)\Pending Interrupts Forwarded/sec
    \Hyper-V Hypervisor Virtual Processor(*)\External Interrupts Forwarded/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Other Intercepts Forwarding Cost
    \Hyper-V Hypervisor Virtual Processor(*)\Other Intercepts Forwarded/sec
    \Hyper-V Hypervisor Virtual Processor(*)\MSR Accesses Forwarding Cost
    \Hyper-V Hypervisor Virtual Processor(*)\MSR Accesses Forwarded/sec
    \Hyper-V Hypervisor Virtual Processor(*)\CPUID Instructions Forwarding Cost
    \Hyper-V Hypervisor Virtual Processor(*)\CPUID Instructions Forwarded/sec
    \Hyper-V Hypervisor Virtual Processor(*)\MWAIT Instructions Forwarding Cost
    \Hyper-V Hypervisor Virtual Processor(*)\MWAIT Instructions Forwarded/sec
    \Hyper-V Hypervisor Virtual Processor(*)\HLT Instructions Forwarding Cost
    \Hyper-V Hypervisor Virtual Processor(*)\HLT Instructions Forwarded/sec
    \Hyper-V Hypervisor Virtual Processor(*)\IO Instructions Forwarding Cost
    \Hyper-V Hypervisor Virtual Processor(*)\IO Instructions Forwarded/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Control Register Accesses Forwarding Cost
    \Hyper-V Hypervisor Virtual Processor(*)\Control Register Accesses Forwarded/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Page Invalidations Forwarding Cost
    \Hyper-V Hypervisor Virtual Processor(*)\Page Invalidations Forwarded/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Hypercalls Forwarding Cost
    \Hyper-V Hypervisor Virtual Processor(*)\Hypercalls Forwarded/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Local I/O TLB Flush Cost
    \Hyper-V Hypervisor Virtual Processor(*)\Local I/O TLB Flushes/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Global I/O TLB Flush Cost
    \Hyper-V Hypervisor Virtual Processor(*)\Global I/O TLB Flushes/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Other Reflected Guest Exceptions/sec
    \Hyper-V Hypervisor Virtual Processor(*)\MBEC Nested Page Table Switches/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Extended Hypercall Intercept Messages/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Extended Hypercalls/sec
    \Hyper-V Hypervisor Virtual Processor(*)\CPU Wait Time Per Dispatch
    \Hyper-V Hypervisor Virtual Processor(*)\Logical Processor Dispatches/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Page Scans/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Nested Page Fault Intercepts Cost
    \Hyper-V Hypervisor Virtual Processor(*)\Nested Page Fault Intercepts/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Hardware Interrupts/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Virtual Processor Hypercalls/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Virtual MMU Hypercalls/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Virtual Interrupt Hypercalls/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Synthetic Interrupt Hypercalls/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Other Hypercalls/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Long Spin Wait Hypercalls/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Logical Processor Hypercalls/sec
    \Hyper-V Hypervisor Virtual Processor(*)\GPA Space Hypercalls/sec
    \Hyper-V Hypervisor Virtual Processor(*)\APIC Self IPIs Sent/sec
    \Hyper-V Hypervisor Virtual Processor(*)\APIC IPIs Sent/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Virtual Interrupts/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Synthetic Interrupts/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Page Table Write Intercepts/sec
    \Hyper-V Hypervisor Virtual Processor(*)\APIC TPR Accesses/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Page Table Validations/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Page Table Resets/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Page Table Reclamations/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Page Table Evictions/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Local Flushed GVA Ranges/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Global GVA Range Flushes/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Address Space Flushes/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Address Domain Flushes/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Address Space Switches/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Address Space Evictions/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Logical Processor Migrations/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Page Table Allocations/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Other Messages/sec
    \Hyper-V Hypervisor Virtual Processor(*)\APIC EOI Accesses/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Memory Intercept Messages/sec
    \Hyper-V Hypervisor Virtual Processor(*)\IO Intercept Messages/sec
    \Hyper-V Hypervisor Virtual Processor(*)\APIC MMIO Accesses/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Reflected Guest Page Faults/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Small Page TLB Fills/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Large Page TLB Fills/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Guest Page Table Maps/sec
    \Hyper-V Hypervisor Virtual Processor(*)\NMI Interrupts Cost
    \Hyper-V Hypervisor Virtual Processor(*)\NMI Interrupts/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Page Fault Intercepts Cost
    \Hyper-V Hypervisor Virtual Processor(*)\Page Fault Intercepts/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Debug Register Accesses Cost
    \Hyper-V Hypervisor Virtual Processor(*)\Debug Register Accesses/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Emulated Instructions Cost
    \Hyper-V Hypervisor Virtual Processor(*)\Emulated Instructions/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Pending Interrupts Cost
    \Hyper-V Hypervisor Virtual Processor(*)\Pending Interrupts/sec
    \Hyper-V Hypervisor Virtual Processor(*)\External Interrupts Cost
    \Hyper-V Hypervisor Virtual Processor(*)\External Interrupts/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Other Intercepts Cost
    \Hyper-V Hypervisor Virtual Processor(*)\Other Intercepts/sec
    \Hyper-V Hypervisor Virtual Processor(*)\MSR Accesses Cost
    \Hyper-V Hypervisor Virtual Processor(*)\MSR Accesses/sec
    \Hyper-V Hypervisor Virtual Processor(*)\CPUID Instructions Cost
    \Hyper-V Hypervisor Virtual Processor(*)\CPUID Instructions/sec
    \Hyper-V Hypervisor Virtual Processor(*)\MWAIT Instructions Cost
    \Hyper-V Hypervisor Virtual Processor(*)\MWAIT Instructions/sec
    \Hyper-V Hypervisor Virtual Processor(*)\HLT Instructions Cost
    \Hyper-V Hypervisor Virtual Processor(*)\HLT Instructions/sec
    \Hyper-V Hypervisor Virtual Processor(*)\IO Instructions Cost
    \Hyper-V Hypervisor Virtual Processor(*)\IO Instructions/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Control Register Accesses Cost
    \Hyper-V Hypervisor Virtual Processor(*)\Control Register Accesses/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Page Invalidations Cost
    \Hyper-V Hypervisor Virtual Processor(*)\Page Invalidations/sec
    \Hyper-V Hypervisor Virtual Processor(*)\Hypercalls Cost
    \Hyper-V Hypervisor Virtual Processor(*)\Hypercalls/sec

Hyper-V Legacy Network Adapter (Performance counters for a virtual machine's Ethernet controller.)

    \Hyper-V Legacy Network Adapter(*)\Bytes Sent/sec
    \Hyper-V Legacy Network Adapter(*)\Bytes Dropped
    \Hyper-V Legacy Network Adapter(*)\Bytes Received/sec
    \Hyper-V Legacy Network Adapter(*)\Frames Sent/sec
    \Hyper-V Legacy Network Adapter(*)\Frames Dropped
    \Hyper-V Legacy Network Adapter(*)\Frames Received/sec

Hyper-V Virtual IDE Controller (Emulated) (Performance counters for a virtual machine's IDE Controller.)

    \Hyper-V Virtual IDE Controller (Emulated)(*)\Write Bytes/sec
    \Hyper-V Virtual IDE Controller (Emulated)(*)\Read Bytes/sec
    \Hyper-V Virtual IDE Controller (Emulated)(*)\Written Sectors/sec
    \Hyper-V Virtual IDE Controller (Emulated)(*)\Read Sectors/sec

Hyper-V Virtual Machine Bus (This counter set represents the statistics for the virtual machine bus.)

    \Hyper-V Virtual Machine Bus\Throttle Events
    \Hyper-V Virtual Machine Bus\Interrupts Sent/sec
    \Hyper-V Virtual Machine Bus\Interrupts Received/sec

Hyper-V Virtual Machine Bus Pipes (Per-Pipe statistics, for performance debugging.)

    \Hyper-V Virtual Machine Bus Pipes(*)\Bytes Written/sec
    \Hyper-V Virtual Machine Bus Pipes(*)\Bytes Read/sec
    \Hyper-V Virtual Machine Bus Pipes(*)\Writes/sec
    \Hyper-V Virtual Machine Bus Pipes(*)\Reads/sec

Hyper-V Virtual Machine Bus Provider Pipes (Per-Pipe statistics, for performance debugging.)

    \Hyper-V Virtual Machine Bus Provider Pipes(*)\Bytes Written/sec
    \Hyper-V Virtual Machine Bus Provider Pipes(*)\Bytes Read/sec
    \Hyper-V Virtual Machine Bus Provider Pipes(*)\Writes/sec
    \Hyper-V Virtual Machine Bus Provider Pipes(*)\Reads/sec

Hyper-V Virtual SMB (Performance counters for Virtual SMB)

    \Hyper-V Virtual SMB(*)\Direct-Mapped Sections
    \Hyper-V Virtual SMB(*)\Direct-Mapped Pages
    \Hyper-V Virtual SMB(*)\Write Bytes/sec (RDMA)
    \Hyper-V Virtual SMB(*)\Write Bytes/sec
    \Hyper-V Virtual SMB(*)\Read Bytes/sec (RDMA)
    \Hyper-V Virtual SMB(*)\Read Bytes/sec
    \Hyper-V Virtual SMB(*)\Flush Requests/sec
    \Hyper-V Virtual SMB(*)\Write Requests/sec (RDMA)
    \Hyper-V Virtual SMB(*)\Write Requests/sec
    \Hyper-V Virtual SMB(*)\Read Requests/sec (RDMA)
    \Hyper-V Virtual SMB(*)\Read Requests/sec
    \Hyper-V Virtual SMB(*)\Avg. sec/Request
    \Hyper-V Virtual SMB(*)\Current Pending Requests
    \Hyper-V Virtual SMB(*)\Current Open File Count
    \Hyper-V Virtual SMB(*)\Tree Connect Count
    \Hyper-V Virtual SMB(*)\Requests/sec
    \Hyper-V Virtual SMB(*)\Sent Bytes/sec
    \Hyper-V Virtual SMB(*)\Received Bytes/sec

Hyper-V Virtual Storage Device (This counter set represents the statistics for a virtual storage device.)

    \Hyper-V Virtual Storage Device(*)\Maximum Adapter Worker Count
    \Hyper-V Virtual Storage Device(*)\Adapter Open Channel Count
    \Hyper-V Virtual Storage Device(*)\Maximum Bandwidth
    \Hyper-V Virtual Storage Device(*)\Byte Quota Replenishment Rate
    \Hyper-V Virtual Storage Device(*)\Io Quota Replenishment Rate
    \Hyper-V Virtual Storage Device(*)\Lower Latency
    \Hyper-V Virtual Storage Device(*)\Minimum IO Rate
    \Hyper-V Virtual Storage Device(*)\Maximum IO Rate
    \Hyper-V Virtual Storage Device(*)\Latency
    \Hyper-V Virtual Storage Device(*)\Throughput
    \Hyper-V Virtual Storage Device(*)\Lower Queue Length
    \Hyper-V Virtual Storage Device(*)\Queue Length
    \Hyper-V Virtual Storage Device(*)\Normalized Throughput
    \Hyper-V Virtual Storage Device(*)\Write Operations/Sec
    \Hyper-V Virtual Storage Device(*)\Read Operations/Sec
    \Hyper-V Virtual Storage Device(*)\Write Bytes/sec
    \Hyper-V Virtual Storage Device(*)\Read Bytes/sec
    \Hyper-V Virtual Storage Device(*)\Error Count
    \Hyper-V Virtual Storage Device(*)\Flush Count
    \Hyper-V Virtual Storage Device(*)\Write Count
    \Hyper-V Virtual Storage Device(*)\Read Count

Hyper-V VM Live Migration (Performance counters for a virtual machine's live migration.)

    \Hyper-V VM Live Migration(*)\Receiver: Decompressed Bytes/sec
    \Hyper-V VM Live Migration(*)\Receiver: Bytes Pending Decompression
    \Hyper-V VM Live Migration(*)\Receiver: Compressed Bytes Received/sec
    \Hyper-V VM Live Migration(*)\Receiver: Maximum Threadpool Thread Count
    \Hyper-V VM Live Migration(*)\Receiver: Uncompressed Bytes Received/sec
    \Hyper-V VM Live Migration(*)\Receiver: Bytes Pending Write
    \Hyper-V VM Live Migration(*)\Receiver: Bytes Written/sec
    \Hyper-V VM Live Migration(*)\TCP Transport: Bytes Received/sec
    \Hyper-V VM Live Migration(*)\TCP Transport: Bytes Pending Processing
    \Hyper-V VM Live Migration(*)\TCP Transport: Posted Receive Buffer Count
    \Hyper-V VM Live Migration(*)\TCP Transport: Bytes Sent/sec
    \Hyper-V VM Live Migration(*)\TCP Transport: Bytes Pending Send
    \Hyper-V VM Live Migration(*)\TCP Transport: Pending Send Count
    \Hyper-V VM Live Migration(*)\TCP Transport: Total buffer count
    \Hyper-V VM Live Migration(*)\Compressor: Enabled Threads
    \Hyper-V VM Live Migration(*)\Compressor: Maximum Threads
    \Hyper-V VM Live Migration(*)\Compressor: Compressed Bytes Sent/sec
    \Hyper-V VM Live Migration(*)\Compressor: Compressed Bytes Sent
    \Hyper-V VM Live Migration(*)\Compressor: Bytes to be Compressed
    \Hyper-V VM Live Migration(*)\SMB Transport: Bytes Sent/sec
    \Hyper-V VM Live Migration(*)\SMB Transport: Bytes Sent
    \Hyper-V VM Live Migration(*)\SMB Transport: Pending Send Bytes
    \Hyper-V VM Live Migration(*)\SMB Transport: Pending Send Count
    \Hyper-V VM Live Migration(*)\Memory Walker: Bytes Sent for Compression/sec
    \Hyper-V VM Live Migration(*)\Memory Walker: Bytes Sent for Compression
    \Hyper-V VM Live Migration(*)\Memory Walker: Uncompressed Bytes Sent/sec
    \Hyper-V VM Live Migration(*)\Memory Walker: Uncompressed Bytes Sent
    \Hyper-V VM Live Migration(*)\Memory Walker: Bytes Read/sec
    \Hyper-V VM Live Migration(*)\Memory Walker: Maximum Threads
    \Hyper-V VM Live Migration(*)\Transfer pass: CPU Cap
    \Hyper-V VM Live Migration(*)\Transfer pass: Dirty Page Count
    \Hyper-V VM Live Migration(*)\Transfer Pass: Is blackout
    \Hyper-V VM Live Migration(*)\Transfer Pass: Number

Hyper-V VM Remoting (Performance counters for a virtual machine's remoting system.)

    \Hyper-V VM Remoting(*)\Updated Pixels/sec
    \Hyper-V VM Remoting(*)\Connected Clients

Hyper-V VM Save, Snapshot, and Restore (Performance counters for a virtual machine's save, snapshot, and restore systems.)

    \Hyper-V VM Save, Snapshot, and Restore(*)\Operation Time
    \Hyper-V VM Save, Snapshot, and Restore(*)\Requests High Priority
    \Hyper-V VM Save, Snapshot, and Restore(*)\Requests Processed
    \Hyper-V VM Save, Snapshot, and Restore(*)\Requests Dispatched
    \Hyper-V VM Save, Snapshot, and Restore(*)\Requests Active
    \Hyper-V VM Save, Snapshot, and Restore(*)\Threads Spawned

Hyper-V VM Vid Partition (These are the perf counters for a VID partition object.)

    \Hyper-V VM Vid Partition(*)\Remote Physical Pages
    \Hyper-V VM Vid Partition(*)\Preferred NUMA Node Index
    \Hyper-V VM Vid Partition(*)\Physical Pages Allocated

Hyper-V VM Virtual Device Pipe IO (Worker process per-pipe statistics, for performance debugging.)

    \Hyper-V VM Virtual Device Pipe IO(*)\Receive Message Quota Exceeded
    \Hyper-V VM Virtual Device Pipe IO(*)\Receive QoS - Total Message Delay Time (100ns)
    \Hyper-V VM Virtual Device Pipe IO(*)\Receive QoS - Exempt Messages/sec
    \Hyper-V VM Virtual Device Pipe IO(*)\Receive QoS - Non-Conformant Messages/sec
    \Hyper-V VM Virtual Device Pipe IO(*)\Receive QoS - Conformant Messages/sec

Hyper-V VM Worker Process Memory Manager (Performance counters for a worker process memory manager.)

    \Hyper-V VM Worker Process Memory Manager(*)\Memory Block Count

Hyper-V Worker Virtual Processor (Performance counters for the virtual processor of a virtual machine.)

    \Hyper-V Worker Virtual Processor(*)\Intercepts Delayed
    \Hyper-V Worker Virtual Processor(*)\Intercept Delay Time (ms)

ICMP (The ICMP performance object consists of counters that measure the rates at which messages are sent and received by using ICMP protocols.  It also includes counters that monitor ICMP protocol errors.)

    \ICMP\Messages/sec
    \ICMP\Messages Received/sec
    \ICMP\Messages Received Errors
    \ICMP\Received Dest. Unreachable
    \ICMP\Received Time Exceeded
    \ICMP\Received Parameter Problem
    \ICMP\Received Source Quench
    \ICMP\Received Redirect/sec
    \ICMP\Received Echo/sec
    \ICMP\Received Echo Reply/sec
    \ICMP\Received Timestamp/sec
    \ICMP\Received Timestamp Reply/sec
    \ICMP\Received Address Mask
    \ICMP\Received Address Mask Reply
    \ICMP\Messages Sent/sec
    \ICMP\Messages Outbound Errors
    \ICMP\Sent Destination Unreachable
    \ICMP\Sent Time Exceeded
    \ICMP\Sent Parameter Problem
    \ICMP\Sent Source Quench
    \ICMP\Sent Redirect/sec
    \ICMP\Sent Echo/sec
    \ICMP\Sent Echo Reply/sec
    \ICMP\Sent Timestamp/sec
    \ICMP\Sent Timestamp Reply/sec
    \ICMP\Sent Address Mask
    \ICMP\Sent Address Mask Reply

ICMPv6 (The ICMP performance object consists of counters that measure the rates at which messages are sent and received by using ICMP protocols.  It also includes counters that monitor ICMP protocol errors.)

    \ICMPv6\Messages/sec
    \ICMPv6\Messages Received/sec
    \ICMPv6\Messages Received Errors
    \ICMPv6\Received Dest. Unreachable
    \ICMPv6\Received Packet Too Big
    \ICMPv6\Received Time Exceeded
    \ICMPv6\Received Parameter Problem
    \ICMPv6\Received Echo/sec
    \ICMPv6\Received Echo Reply/sec
    \ICMPv6\Received Membership Query
    \ICMPv6\Received Membership Report
    \ICMPv6\Received Membership Reduction
    \ICMPv6\Received Router Solicit
    \ICMPv6\Received Router Advert
    \ICMPv6\Received Neighbor Solicit
    \ICMPv6\Received Neighbor Advert
    \ICMPv6\Received Redirect/sec
    \ICMPv6\Messages Sent/sec
    \ICMPv6\Messages Outbound Errors
    \ICMPv6\Sent Destination Unreachable
    \ICMPv6\Sent Packet Too Big
    \ICMPv6\Sent Time Exceeded
    \ICMPv6\Sent Parameter Problem
    \ICMPv6\Sent Echo/sec
    \ICMPv6\Sent Echo Reply/sec
    \ICMPv6\Sent Membership Query
    \ICMPv6\Sent Membership Report
    \ICMPv6\Sent Membership Reduction
    \ICMPv6\Sent Router Solicit
    \ICMPv6\Sent Router Advert
    \ICMPv6\Sent Neighbor Solicit
    \ICMPv6\Sent Neighbor Advert
    \ICMPv6\Sent Redirect/sec

IPHTTPS Global (Statistics of IPHTTPS server on this machine.)

    \IPHTTPS Global(*)\Sessions - Total sessions
    \IPHTTPS Global(*)\Out - Total packets sent
    \IPHTTPS Global(*)\In - Total packets received
    \IPHTTPS Global(*)\Errors - Receive errors on the server
    \IPHTTPS Global(*)\Errors - Transmit errors on the server
    \IPHTTPS Global(*)\Out - Total bytes forwarded
    \IPHTTPS Global(*)\Errors - Authentication Errors
    \IPHTTPS Global(*)\Drops - Neighbor resolution timeouts
    \IPHTTPS Global(*)\Out - Total bytes sent
    \IPHTTPS Global(*)\In - Total bytes received

IPHTTPS Session (Per session statistics on this IPHTTPS server.)

    \IPHTTPS Session(*)\Duration - Duration of the session (Seconds)
    \IPHTTPS Session(*)\Errors - Receive errors on this session
    \IPHTTPS Session(*)\Errors - Transmit errors on this session
    \IPHTTPS Session(*)\Bytes sent on this session
    \IPHTTPS Session(*)\Bytes received on this session
    \IPHTTPS Session(*)\Packets sent on this session
    \IPHTTPS Session(*)\Packets received on this session

IPsec AuthIP IPv4 (IPsec AuthIP IPv4 is the set of Internet Protocol security (IPsec) Authenticated IP (AuthIP) counters that apply to traffic and connections over Internet Protocol version 4.)

    \IPsec AuthIP IPv4\Extended Mode SAs That Used Impersonation
    \IPsec AuthIP IPv4\Failed Extended Mode Negotiations/sec
    \IPsec AuthIP IPv4\Failed Extended Mode Negotiations
    \IPsec AuthIP IPv4\Successful Extended Mode Negotiations/sec
    \IPsec AuthIP IPv4\Successful Extended Mode Negotiations
    \IPsec AuthIP IPv4\Extended Mode Negotiations/sec
    \IPsec AuthIP IPv4\Extended Mode Negotiations
    \IPsec AuthIP IPv4\Pending Extended Mode Negotiations
    \IPsec AuthIP IPv4\Active Extended Mode SAs
    \IPsec AuthIP IPv4\Failed Quick Mode Negotiations/sec
    \IPsec AuthIP IPv4\Failed Quick Mode Negotiations
    \IPsec AuthIP IPv4\Successful Quick Mode Negotiations/sec
    \IPsec AuthIP IPv4\Successful Quick Mode Negotiations
    \IPsec AuthIP IPv4\Quick Mode Negotiations/sec
    \IPsec AuthIP IPv4\Quick Mode Negotiations
    \IPsec AuthIP IPv4\Pending Quick Mode Negotiations
    \IPsec AuthIP IPv4\Active Quick Mode SAs
    \IPsec AuthIP IPv4\Main Mode SAs That Used Impersonation/sec
    \IPsec AuthIP IPv4\Main Mode SAs That Used Impersonation
    \IPsec AuthIP IPv4\Main Mode Negotiation Requests Received/sec
    \IPsec AuthIP IPv4\Main Mode Negotiation Requests Received
    \IPsec AuthIP IPv4\Failed Main Mode Negotiations/sec
    \IPsec AuthIP IPv4\Failed Main Mode Negotiations
    \IPsec AuthIP IPv4\Successful Main Mode Negotiations/sec
    \IPsec AuthIP IPv4\Successful Main Mode Negotiations
    \IPsec AuthIP IPv4\Main Mode Negotiations/sec
    \IPsec AuthIP IPv4\Main Mode Negotiations
    \IPsec AuthIP IPv4\Pending Main Mode Negotiations
    \IPsec AuthIP IPv4\Active Main Mode SAs

IPsec AuthIP IPv6 (IPsec AuthIP IPv6 is the set of Internet Protocol security (IPsec) Authenticated IP (AuthIP) counters that apply to traffic and connections over Internet Protocol version 6.)

    \IPsec AuthIP IPv6\Extended Mode SAs That Used Impersonation
    \IPsec AuthIP IPv6\Failed Extended Mode Negotiations/sec
    \IPsec AuthIP IPv6\Failed Extended Mode Negotiations
    \IPsec AuthIP IPv6\Successful Extended Mode Negotiations/sec
    \IPsec AuthIP IPv6\Successful Extended Mode Negotiations
    \IPsec AuthIP IPv6\Extended Mode Negotiations/sec
    \IPsec AuthIP IPv6\Extended Mode Negotiations
    \IPsec AuthIP IPv6\Pending Extended Mode Negotiations
    \IPsec AuthIP IPv6\Active Extended Mode SAs
    \IPsec AuthIP IPv6\Failed Quick Mode Negotiations/sec
    \IPsec AuthIP IPv6\Failed Quick Mode Negotiations
    \IPsec AuthIP IPv6\Successful Quick Mode Negotiations/sec
    \IPsec AuthIP IPv6\Successful Quick Mode Negotiations
    \IPsec AuthIP IPv6\Quick Mode Negotiations/sec
    \IPsec AuthIP IPv6\Quick Mode Negotiations
    \IPsec AuthIP IPv6\Pending Quick Mode Negotiations
    \IPsec AuthIP IPv6\Active Quick Mode SAs
    \IPsec AuthIP IPv6\Main Mode SAs That Used Impersonation/sec
    \IPsec AuthIP IPv6\Main Mode SAs That Used Impersonation
    \IPsec AuthIP IPv6\Main Mode Negotiation Requests Received/sec
    \IPsec AuthIP IPv6\Main Mode Negotiation Requests Received
    \IPsec AuthIP IPv6\Failed Main Mode Negotiations/sec
    \IPsec AuthIP IPv6\Failed Main Mode Negotiations
    \IPsec AuthIP IPv6\Successful Main Mode Negotiations/sec
    \IPsec AuthIP IPv6\Successful Main Mode Negotiations
    \IPsec AuthIP IPv6\Main Mode Negotiations/sec
    \IPsec AuthIP IPv6\Main Mode Negotiations
    \IPsec AuthIP IPv6\Pending Main Mode Negotiations
    \IPsec AuthIP IPv6\Active Main Mode SAs

IPsec Connections (IPsec Connections is the set of Internet Protocol security (IPsec) counters that apply to IPsec encapsulated connections.)

    \IPsec Connections\Number of failed authentications
    \IPsec Connections\Total Bytes Out since start
    \IPsec Connections\Total Bytes In since start
    \IPsec Connections\Max number of connections since boot
    \IPsec Connections\Total number of cumulative connections since boot
    \IPsec Connections\Total Number current Connections

IPsec Driver (IPsec Driver is the set of Internet Protocol security (IPsec) driver counters that apply to traffic over Internet Protocol version 4 and Internet Protocol version 6.)

    \IPsec Driver\Inbound Packets Dropped/sec
    \IPsec Driver\Total Inbound Packets Dropped
    \IPsec Driver\Inbound Packets Received/sec
    \IPsec Driver\Total Inbound Packets Received
    \IPsec Driver\Plaintext Packets Received/sec
    \IPsec Driver\Plaintext Packets Received
    \IPsec Driver\Packets Received Over Wrong SA/sec
    \IPsec Driver\Packets Received Over Wrong SA
    \IPsec Driver\Packets That Failed UDP-ESP Validation/sec
    \IPsec Driver\Packets That Failed UDP-ESP Validation
    \IPsec Driver\Packets That Failed ESP Validation/sec
    \IPsec Driver\Packets That Failed ESP Validation
    \IPsec Driver\Security Associations Added
    \IPsec Driver\SA Rekeys
    \IPsec Driver\Packets Not Decrypted/sec
    \IPsec Driver\Packets Not Decrypted
    \IPsec Driver\Packets Not Authenticated/sec
    \IPsec Driver\Packets Not Authenticated
    \IPsec Driver\Packets That Failed Replay Detection/sec
    \IPsec Driver\Packets That Failed Replay Detection
    \IPsec Driver\Offloaded Bytes Sent/sec
    \IPsec Driver\Offloaded Bytes Received/sec
    \IPsec Driver\Offloaded Security Associations
    \IPsec Driver\Bytes Sent in Transport Mode/sec
    \IPsec Driver\Bytes Received in Transport Mode/sec
    \IPsec Driver\Bytes Sent in Tunnel Mode/sec
    \IPsec Driver\Bytes Received in Tunnel Mode/sec
    \IPsec Driver\Incorrect SPI Packets/sec
    \IPsec Driver\Incorrect SPI Packets
    \IPsec Driver\Pending Security Associations
    \IPsec Driver\Active Security Associations

IPsec IKEv1 IPv4 (IPsec IKEv1 IPv4 is the set of Internet Protocol security (IPsec) Internet Key Exchange version 1 (IKEv1) counters that apply to traffic and connections over Internet Protocol version 4.)

    \IPsec IKEv1 IPv4\Failed Quick Mode Negotiations/sec
    \IPsec IKEv1 IPv4\Failed Quick Mode Negotiations
    \IPsec IKEv1 IPv4\Successful Quick Mode Negotiations/sec
    \IPsec IKEv1 IPv4\Successful Quick Mode Negotiations
    \IPsec IKEv1 IPv4\Quick Mode Negotiations/sec
    \IPsec IKEv1 IPv4\Quick Mode Negotiations
    \IPsec IKEv1 IPv4\Pending Quick Mode Negotiations
    \IPsec IKEv1 IPv4\Active Quick Mode SAs
    \IPsec IKEv1 IPv4\Main Mode Negotiation Requests Received/sec
    \IPsec IKEv1 IPv4\Main Mode Negotiation Requests Received
    \IPsec IKEv1 IPv4\Failed Main Mode Negotiations/sec
    \IPsec IKEv1 IPv4\Failed Main Mode Negotiations
    \IPsec IKEv1 IPv4\Successful Main Mode Negotiations/sec
    \IPsec IKEv1 IPv4\Successful Main Mode Negotiations
    \IPsec IKEv1 IPv4\Main Mode Negotiations/sec
    \IPsec IKEv1 IPv4\Main Mode Negotiations
    \IPsec IKEv1 IPv4\Pending Main Mode Negotiations
    \IPsec IKEv1 IPv4\Active Main Mode SAs

IPsec IKEv1 IPv6 (IPsec IKEv1 IPv6 is the set of Internet Protocol security (IPsec) Internet Key Exchange version 1 (IKEv1) counters that apply to traffic and connections over Internet Protocol version 6.)

    \IPsec IKEv1 IPv6\Failed Quick Mode Negotiations/sec
    \IPsec IKEv1 IPv6\Failed Quick Mode Negotiations
    \IPsec IKEv1 IPv6\Successful Quick Mode Negotiations/sec
    \IPsec IKEv1 IPv6\Successful Quick Mode Negotiations
    \IPsec IKEv1 IPv6\Quick Mode Negotiations/sec
    \IPsec IKEv1 IPv6\Quick Mode Negotiations
    \IPsec IKEv1 IPv6\Pending Quick Mode Negotiations
    \IPsec IKEv1 IPv6\Active Quick Mode SAs
    \IPsec IKEv1 IPv6\Main Mode Negotiation Requests Received/sec
    \IPsec IKEv1 IPv6\Main Mode Negotiation Requests Received
    \IPsec IKEv1 IPv6\Failed Main Mode Negotiations/sec
    \IPsec IKEv1 IPv6\Failed Main Mode Negotiations
    \IPsec IKEv1 IPv6\Successful Main Mode Negotiations/sec
    \IPsec IKEv1 IPv6\Successful Main Mode Negotiations
    \IPsec IKEv1 IPv6\Main Mode Negotiations/sec
    \IPsec IKEv1 IPv6\Main Mode Negotiations
    \IPsec IKEv1 IPv6\Pending Main Mode Negotiations
    \IPsec IKEv1 IPv6\Active Main Mode SAs

IPsec IKEv2 IPv4 (IPsec IKEv2 IPv4 is the set of Internet Protocol security (IPsec) Internet Key Exchange version 2 (IKEv2) counters that apply to traffic and connections over Internet Protocol version 4.)

    \IPsec IKEv2 IPv4\Failed Quick Mode Negotiations/sec
    \IPsec IKEv2 IPv4\Failed Quick Mode Negotiations
    \IPsec IKEv2 IPv4\Successful Quick Mode Negotiations/sec
    \IPsec IKEv2 IPv4\Successful Quick Mode Negotiations
    \IPsec IKEv2 IPv4\Quick Mode Negotiations/sec
    \IPsec IKEv2 IPv4\Quick Mode Negotiations
    \IPsec IKEv2 IPv4\Pending Quick Mode Negotiations
    \IPsec IKEv2 IPv4\Active Quick Mode SAs
    \IPsec IKEv2 IPv4\Main Mode Negotiation Requests Received/sec
    \IPsec IKEv2 IPv4\Main Mode Negotiation Requests Received
    \IPsec IKEv2 IPv4\Failed Main Mode Negotiations/sec
    \IPsec IKEv2 IPv4\Failed Main Mode Negotiations
    \IPsec IKEv2 IPv4\Successful Main Mode Negotiations/sec
    \IPsec IKEv2 IPv4\Successful Main Mode Negotiations
    \IPsec IKEv2 IPv4\Main Mode Negotiations/sec
    \IPsec IKEv2 IPv4\Main Mode Negotiations
    \IPsec IKEv2 IPv4\Pending Main Mode Negotiations
    \IPsec IKEv2 IPv4\Active Main Mode SAs

IPsec IKEv2 IPv6 (IPsec IKEv2 IPv6 is the set of Internet Protocol security (IPsec) Internet Key Exchange version 2 (IKEv2) counters that apply to traffic and connections over Internet Protocol version 6.)

    \IPsec IKEv2 IPv6\Failed Quick Mode Negotiations/sec
    \IPsec IKEv2 IPv6\Failed Quick Mode Negotiations
    \IPsec IKEv2 IPv6\Successful Quick Mode Negotiations/sec
    \IPsec IKEv2 IPv6\Successful Quick Mode Negotiations
    \IPsec IKEv2 IPv6\Quick Mode Negotiations/sec
    \IPsec IKEv2 IPv6\Quick Mode Negotiations
    \IPsec IKEv2 IPv6\Pending Quick Mode Negotiations
    \IPsec IKEv2 IPv6\Active Quick Mode SAs
    \IPsec IKEv2 IPv6\Main Mode Negotiation Requests Received/sec
    \IPsec IKEv2 IPv6\Main Mode Negotiation Requests Received
    \IPsec IKEv2 IPv6\Failed Main Mode Negotiations/sec
    \IPsec IKEv2 IPv6\Failed Main Mode Negotiations
    \IPsec IKEv2 IPv6\Successful Main Mode Negotiations/sec
    \IPsec IKEv2 IPv6\Successful Main Mode Negotiations
    \IPsec IKEv2 IPv6\Main Mode Negotiations/sec
    \IPsec IKEv2 IPv6\Main Mode Negotiations
    \IPsec IKEv2 IPv6\Pending Main Mode Negotiations
    \IPsec IKEv2 IPv6\Active Main Mode SAs

IPv4 (The IP performance object consists of counters that measure the rates at which IP datagrams are sent and received by using IP protocols.  It also includes counters that monitor IP protocol errors.)

    \IPv4\Datagrams/sec
    \IPv4\Datagrams Received/sec
    \IPv4\Datagrams Received Header Errors
    \IPv4\Datagrams Received Address Errors
    \IPv4\Datagrams Forwarded/sec
    \IPv4\Datagrams Received Unknown Protocol
    \IPv4\Datagrams Received Discarded
    \IPv4\Datagrams Received Delivered/sec
    \IPv4\Datagrams Sent/sec
    \IPv4\Datagrams Outbound Discarded
    \IPv4\Datagrams Outbound No Route
    \IPv4\Fragments Received/sec
    \IPv4\Fragments Re-assembled/sec
    \IPv4\Fragment Re-assembly Failures
    \IPv4\Fragmented Datagrams/sec
    \IPv4\Fragmentation Failures
    \IPv4\Fragments Created/sec

IPv6 (The IP performance object consists of counters that measure the rates at which IP datagrams are sent and received by using IP protocols.  It also includes counters that monitor IP protocol errors.)

    \IPv6\Datagrams/sec
    \IPv6\Datagrams Received/sec
    \IPv6\Datagrams Received Header Errors
    \IPv6\Datagrams Received Address Errors
    \IPv6\Datagrams Forwarded/sec
    \IPv6\Datagrams Received Unknown Protocol
    \IPv6\Datagrams Received Discarded
    \IPv6\Datagrams Received Delivered/sec
    \IPv6\Datagrams Sent/sec
    \IPv6\Datagrams Outbound Discarded
    \IPv6\Datagrams Outbound No Route
    \IPv6\Fragments Received/sec
    \IPv6\Fragments Re-assembled/sec
    \IPv6\Fragment Re-assembly Failures
    \IPv6\Fragmented Datagrams/sec
    \IPv6\Fragmentation Failures
    \IPv6\Fragments Created/sec

Job Object Details (% Job object Details shows detailed performance information about the active processes that make up a Job object.)

    \Job Object Details(*)\% Processor Time
    \Job Object Details(*)\% User Time
    \Job Object Details(*)\% Privileged Time
    \Job Object Details(*)\Virtual Bytes Peak
    \Job Object Details(*)\Virtual Bytes
    \Job Object Details(*)\Page Faults/sec
    \Job Object Details(*)\Working Set Peak
    \Job Object Details(*)\Working Set
    \Job Object Details(*)\Page File Bytes Peak
    \Job Object Details(*)\Page File Bytes
    \Job Object Details(*)\Private Bytes
    \Job Object Details(*)\Thread Count
    \Job Object Details(*)\Priority Base
    \Job Object Details(*)\Elapsed Time
    \Job Object Details(*)\ID Process
    \Job Object Details(*)\Creating Process ID
    \Job Object Details(*)\Pool Paged Bytes
    \Job Object Details(*)\Pool Nonpaged Bytes
    \Job Object Details(*)\Handle Count
    \Job Object Details(*)\IO Read Operations/sec
    \Job Object Details(*)\IO Write Operations/sec
    \Job Object Details(*)\IO Data Operations/sec
    \Job Object Details(*)\IO Other Operations/sec
    \Job Object Details(*)\IO Read Bytes/sec
    \Job Object Details(*)\IO Write Bytes/sec
    \Job Object Details(*)\IO Data Bytes/sec
    \Job Object Details(*)\IO Other Bytes/sec

LogicalDisk (The Logical Disk performance object consists of counters that monitor logical partitions of a hard or fixed disk drives.  Performance Monitor identifies logical disks by their a drive letter, such as C.)

    \LogicalDisk(*)\% Free Space
    \LogicalDisk(*)\Free Megabytes
    \LogicalDisk(*)\Current Disk Queue Length
    \LogicalDisk(*)\% Disk Time
    \LogicalDisk(*)\Avg. Disk Queue Length
    \LogicalDisk(*)\% Disk Read Time
    \LogicalDisk(*)\Avg. Disk Read Queue Length
    \LogicalDisk(*)\% Disk Write Time
    \LogicalDisk(*)\Avg. Disk Write Queue Length
    \LogicalDisk(*)\Avg. Disk sec/Transfer
    \LogicalDisk(*)\Avg. Disk sec/Read
    \LogicalDisk(*)\Avg. Disk sec/Write
    \LogicalDisk(*)\Disk Transfers/sec
    \LogicalDisk(*)\Disk Reads/sec
    \LogicalDisk(*)\Disk Writes/sec
    \LogicalDisk(*)\Disk Bytes/sec
    \LogicalDisk(*)\Disk Read Bytes/sec
    \LogicalDisk(*)\Disk Write Bytes/sec
    \LogicalDisk(*)\Avg. Disk Bytes/Transfer
    \LogicalDisk(*)\Avg. Disk Bytes/Read
    \LogicalDisk(*)\Avg. Disk Bytes/Write
    \LogicalDisk(*)\% Idle Time
    \LogicalDisk(*)\Split IO/Sec

Memory (The Memory performance object  consists of counters that describe the behavior of physical and virtual memory on the computer.  Physical memory is the amount of random access memory on the computer.  Virtual memory consists of the space in physical memory and on disk.  Many of the memory counters monitor paging, which is the movement of pages of code and data between disk and physical memory.  Excessive paging, a symptom of a memory shortage, can cause delays which interfere with all system processes.)

    \Memory\Page Faults/sec
    \Memory\Available Bytes
    \Memory\Committed Bytes
    \Memory\Commit Limit
    \Memory\Write Copies/sec
    \Memory\Transition Faults/sec
    \Memory\Cache Faults/sec
    \Memory\Demand Zero Faults/sec
    \Memory\Pages/sec
    \Memory\Pages Input/sec
    \Memory\Page Reads/sec
    \Memory\Pages Output/sec
    \Memory\Pool Paged Bytes
    \Memory\Pool Nonpaged Bytes
    \Memory\Page Writes/sec
    \Memory\Pool Paged Allocs
    \Memory\Pool Nonpaged Allocs
    \Memory\Free System Page Table Entries
    \Memory\Cache Bytes
    \Memory\Cache Bytes Peak
    \Memory\Pool Paged Resident Bytes
    \Memory\System Code Total Bytes
    \Memory\System Code Resident Bytes
    \Memory\System Driver Total Bytes
    \Memory\System Driver Resident Bytes
    \Memory\System Cache Resident Bytes
    \Memory\% Committed Bytes In Use
    \Memory\Available KBytes
    \Memory\Available MBytes
    \Memory\Transition Pages RePurposed/sec
    \Memory\Free & Zero Page List Bytes
    \Memory\Modified Page List Bytes
    \Memory\Standby Cache Reserve Bytes
    \Memory\Standby Cache Normal Priority Bytes
    \Memory\Standby Cache Core Bytes
    \Memory\Long-Term Average Standby Cache Lifetime (s)

Microsoft Winsock BSP (Global performance counters for Microsoft Winsock Base Service Provider)

    \Microsoft Winsock BSP\Rejected Connections
    \Microsoft Winsock BSP\Rejected Connections/sec
    \Microsoft Winsock BSP\Dropped Datagrams
    \Microsoft Winsock BSP\Dropped Datagrams/sec

MSDTC Bridge 4.0.0.0 (MSDTC Bridge 4.0.0.0 performance counters)

    \MSDTC Bridge 4.0.0.0\Message send failures/sec
    \MSDTC Bridge 4.0.0.0\Prepare retry count/sec
    \MSDTC Bridge 4.0.0.0\Commit retry count/sec
    \MSDTC Bridge 4.0.0.0\Prepared retry count/sec
    \MSDTC Bridge 4.0.0.0\Replay retry count/sec
    \MSDTC Bridge 4.0.0.0\Faults received count/sec
    \MSDTC Bridge 4.0.0.0\Faults sent count/sec
    \MSDTC Bridge 4.0.0.0\Average participant prepare response time
    \MSDTC Bridge 4.0.0.0\Average participant commit response time

Netlogon (Counters for measuring the performance of Netlogon.)

    \Netlogon(*)\Last Authentication Time
    \Netlogon(*)\Average Semaphore Hold Time
    \Netlogon(*)\Semaphore Timeouts
    \Netlogon(*)\Semaphore Acquires
    \Netlogon(*)\Semaphore Holders
    \Netlogon(*)\Semaphore Waiters

Network Adapter (The Network Adapter performance object consists of counters that measure the rates at which bytes and packets are sent and received over a physical or virtual network connection.  It includes counters that monitor connection errors.)

    \Network Adapter(*)\Bytes Total/sec
    \Network Adapter(*)\Packets/sec
    \Network Adapter(*)\Packets Received/sec
    \Network Adapter(*)\Packets Sent/sec
    \Network Adapter(*)\Current Bandwidth
    \Network Adapter(*)\Bytes Received/sec
    \Network Adapter(*)\Packets Received Unicast/sec
    \Network Adapter(*)\Packets Received Non-Unicast/sec
    \Network Adapter(*)\Packets Received Discarded
    \Network Adapter(*)\Packets Received Errors
    \Network Adapter(*)\Packets Received Unknown
    \Network Adapter(*)\Bytes Sent/sec
    \Network Adapter(*)\Packets Sent Unicast/sec
    \Network Adapter(*)\Packets Sent Non-Unicast/sec
    \Network Adapter(*)\Packets Outbound Discarded
    \Network Adapter(*)\Packets Outbound Errors
    \Network Adapter(*)\Output Queue Length
    \Network Adapter(*)\Offloaded Connections
    \Network Adapter(*)\TCP Active RSC Connections
    \Network Adapter(*)\TCP RSC Coalesced Packets/sec
    \Network Adapter(*)\TCP RSC Exceptions/sec
    \Network Adapter(*)\TCP RSC Average Packet Size

Network Interface (The Network Interface performance object consists of counters that measure the rates at which bytes and packets are sent and received over a network connection.  It includes counters that monitor connection errors.)

    \Network Interface(*)\Bytes Total/sec
    \Network Interface(*)\Packets/sec
    \Network Interface(*)\Packets Received/sec
    \Network Interface(*)\Packets Sent/sec
    \Network Interface(*)\Current Bandwidth
    \Network Interface(*)\Bytes Received/sec
    \Network Interface(*)\Packets Received Unicast/sec
    \Network Interface(*)\Packets Received Non-Unicast/sec
    \Network Interface(*)\Packets Received Discarded
    \Network Interface(*)\Packets Received Errors
    \Network Interface(*)\Packets Received Unknown
    \Network Interface(*)\Bytes Sent/sec
    \Network Interface(*)\Packets Sent Unicast/sec
    \Network Interface(*)\Packets Sent Non-Unicast/sec
    \Network Interface(*)\Packets Outbound Discarded
    \Network Interface(*)\Packets Outbound Errors
    \Network Interface(*)\Output Queue Length
    \Network Interface(*)\Offloaded Connections
    \Network Interface(*)\TCP Active RSC Connections
    \Network Interface(*)\TCP RSC Coalesced Packets/sec
    \Network Interface(*)\TCP RSC Exceptions/sec
    \Network Interface(*)\TCP RSC Average Packet Size

Network QoS Policy (This counter set consists of flow statistics specific to a network QoS policy.)

    \Network QoS Policy(*)\Packets dropped/sec
    \Network QoS Policy(*)\Packets dropped
    \Network QoS Policy(*)\Bytes transmitted/sec
    \Network QoS Policy(*)\Bytes transmitted
    \Network QoS Policy(*)\Packets transmitted/sec
    \Network QoS Policy(*)\Packets transmitted

NUMA Node Memory (Counters that report approximate memory utilization statistics per node on NUMA systems.)

    \NUMA Node Memory(*)\Total MBytes
    \NUMA Node Memory(*)\Free & Zero Page List MBytes
    \NUMA Node Memory(*)\Standby List MBytes
    \NUMA Node Memory(*)\Available MBytes

Objects (The Object performance object consists of counters that monitor  logical objects in the system, such as processes, threads, mutexes, and semaphores.  This information can be used to detect the unnecessary consumption of computer resources.  Each object requires memory to store basic information about the object.)

    \Objects\Processes
    \Objects\Threads
    \Objects\Events
    \Objects\Semaphores
    \Objects\Mutexes
    \Objects\Sections

Offline Files (Performance counters for Offline Files)

    \Offline Files\Bytes Received/sec
    \Offline Files\Bytes Transmitted/sec
    \Offline Files\Bytes Transmitted
    \Offline Files\Bytes Received

Pacer Flow (The Pacer Flow performance counter set consists of flow statistics from the packet scheduler.)

    \Pacer Flow(*)\Nonconforming packets transmitted/sec
    \Pacer Flow(*)\Nonconforming packets transmitted
    \Pacer Flow(*)\Average packets in netcard
    \Pacer Flow(*)\Maximum packets in netcard
    \Pacer Flow(*)\Max packets in sequencer
    \Pacer Flow(*)\Average packets in sequencer
    \Pacer Flow(*)\Max packets in shaper
    \Pacer Flow(*)\Average packets in shaper
    \Pacer Flow(*)\Nonconforming packets scheduled/sec
    \Pacer Flow(*)\Nonconforming packets scheduled
    \Pacer Flow(*)\Packets dropped/sec
    \Pacer Flow(*)\Packets scheduled/sec
    \Pacer Flow(*)\Packets transmitted/sec
    \Pacer Flow(*)\Bytes scheduled/sec
    \Pacer Flow(*)\Bytes transmitted/sec
    \Pacer Flow(*)\Bytes transmitted
    \Pacer Flow(*)\Bytes scheduled
    \Pacer Flow(*)\Packets transmitted
    \Pacer Flow(*)\Packets scheduled
    \Pacer Flow(*)\Packets dropped

Pacer Pipe (The Pacer Pipe performance counter set consists of pipe statistics from the packet scheduler.)

    \Pacer Pipe(*)\Nonconforming packets transmitted/sec
    \Pacer Pipe(*)\Nonconforming packets transmitted
    \Pacer Pipe(*)\Average packets in netcard
    \Pacer Pipe(*)\Max packets in netcard
    \Pacer Pipe(*)\Max packets in sequencer
    \Pacer Pipe(*)\Average packets in sequencer
    \Pacer Pipe(*)\Max packets in shaper
    \Pacer Pipe(*)\Average packets in shaper
    \Pacer Pipe(*)\Nonconforming packets scheduled/sec
    \Pacer Pipe(*)\Nonconforming packets scheduled
    \Pacer Pipe(*)\Max simultaneous flows
    \Pacer Pipe(*)\Flow mods rejected
    \Pacer Pipe(*)\Flows modified
    \Pacer Pipe(*)\Flows rejected
    \Pacer Pipe(*)\Flows closed
    \Pacer Pipe(*)\Flows opened
    \Pacer Pipe(*)\Out of packets

PacketDirect EC Utilization (NDIS PacketDirect execution context utilization counter set.)

    \PacketDirect EC Utilization(*)\RX Queue Count
    \PacketDirect EC Utilization(*)\TX Queue Count
    \PacketDirect EC Utilization(*)\% Processing Time
    \PacketDirect EC Utilization(*)\% Busy Waiting Time
    \PacketDirect EC Utilization(*)\% Idle Time
    \PacketDirect EC Utilization(*)\% Busy Wait Iterations
    \PacketDirect EC Utilization(*)\Busy Wait Iterations/sec
    \PacketDirect EC Utilization(*)\Total Busy Wait Iterations
    \PacketDirect EC Utilization(*)\Iterations/sec
    \PacketDirect EC Utilization(*)\Total Iterations
    \PacketDirect EC Utilization(*)\Processor Number

PacketDirect Queue Depth (NDIS PacketDirect queue depth counter set.)

    \PacketDirect Queue Depth(*)\% Average Queue Utilization
    \PacketDirect Queue Depth(*)\Average Queue Depth

PacketDirect Receive Counters (NDIS PacketDirect receive counter set.)

    \PacketDirect Receive Counters(*)\Packets Dropped/sec
    \PacketDirect Receive Counters(*)\Packets Dropped
    \PacketDirect Receive Counters(*)\Bytes Received/sec
    \PacketDirect Receive Counters(*)\Bytes Received
    \PacketDirect Receive Counters(*)\Packets Received/sec
    \PacketDirect Receive Counters(*)\Packets Received

PacketDirect Receive Filters (NDIS PacketDirect receive filter counter set.)

    \PacketDirect Receive Filters(*)\Bytes Matched/sec
    \PacketDirect Receive Filters(*)\Bytes Matched
    \PacketDirect Receive Filters(*)\Packets Matched/sec
    \PacketDirect Receive Filters(*)\Packets Matched

PacketDirect Transmit Counters (NDIS PacketDirect transmit counter set.)

    \PacketDirect Transmit Counters(*)\Bytes Transmitted/sec
    \PacketDirect Transmit Counters(*)\Bytes Transmitted
    \PacketDirect Transmit Counters(*)\Packets Transmitted/sec
    \PacketDirect Transmit Counters(*)\Packets Transmitted

Paging File (The Paging File performance object consists of counters that monitor the paging file(s) on the computer.  The paging file is a reserved space on disk that backs up committed physical memory on the computer.)

    \Paging File(*)\% Usage
    \Paging File(*)\% Usage Peak

Peer Name Resolution Protocol (The Peer Name Resolution Protocol (PNRP) performance object consists of counters that monitor each of available PNRP clouds.  These counters monitor the local PNRP cache and measure the rates at which PNRP protocol messages are sent and received.)

    \Peer Name Resolution Protocol(*)\Unknown message type received
    \Peer Name Resolution Protocol(*)\Lookup received per second
    \Peer Name Resolution Protocol(*)\Lookup sent per second
    \Peer Name Resolution Protocol(*)\Ack received per second
    \Peer Name Resolution Protocol(*)\Ack sent per second
    \Peer Name Resolution Protocol(*)\Authority received per second
    \Peer Name Resolution Protocol(*)\Authority sent per second
    \Peer Name Resolution Protocol(*)\Inquire received per second
    \Peer Name Resolution Protocol(*)\Inquire sent per second
    \Peer Name Resolution Protocol(*)\Flood received per second
    \Peer Name Resolution Protocol(*)\Flood sent per second
    \Peer Name Resolution Protocol(*)\Request received per second
    \Peer Name Resolution Protocol(*)\Request sent per second
    \Peer Name Resolution Protocol(*)\Advertise received per second
    \Peer Name Resolution Protocol(*)\Advertise sent per second
    \Peer Name Resolution Protocol(*)\Solicit received per second
    \Peer Name Resolution Protocol(*)\Solicit sent per second
    \Peer Name Resolution Protocol(*)\Receive failures
    \Peer Name Resolution Protocol(*)\Send failures
    \Peer Name Resolution Protocol(*)\Stale cache entry
    \Peer Name Resolution Protocol(*)\Estimated cloud size
    \Peer Name Resolution Protocol(*)\Average bytes received
    \Peer Name Resolution Protocol(*)\Average bytes sent
    \Peer Name Resolution Protocol(*)\Cache Entry
    \Peer Name Resolution Protocol(*)\Resolve
    \Peer Name Resolution Protocol(*)\Registration

Per Processor Network Activity Cycles (The Per Processor Network Activity Cycles counter set measures processor cycles due to network activity of an interface on each processor.)

    \Per Processor Network Activity Cycles(*)\Interrupt DPC Latency Cycles/sec
    \Per Processor Network Activity Cycles(*)\Stack Send Complete Cycles/sec
    \Per Processor Network Activity Cycles(*)\Miniport RSS Indirection Table Change Cycles
    \Per Processor Network Activity Cycles(*)\Build Scatter Gather Cycles/sec
    \Per Processor Network Activity Cycles(*)\NDIS Send Complete Cycles/sec
    \Per Processor Network Activity Cycles(*)\Miniport Send Cycles/sec
    \Per Processor Network Activity Cycles(*)\NDIS Send Cycles/sec
    \Per Processor Network Activity Cycles(*)\Miniport Return Packet Cycles/sec
    \Per Processor Network Activity Cycles(*)\NDIS Return Packet Cycles/sec
    \Per Processor Network Activity Cycles(*)\Stack Receive Indication Cycles/sec
    \Per Processor Network Activity Cycles(*)\NDIS Receive Indication Cycles/sec
    \Per Processor Network Activity Cycles(*)\Interrupt Cycles/sec
    \Per Processor Network Activity Cycles(*)\Interrupt DPC Cycles/sec

Per Processor Network Interface Card Activity (The Per Processor Network Interface Card Activity counter set measures network activity of a network interface card per processor.)

    \Per Processor Network Interface Card Activity(*)\Packets Coalesced/sec
    \Per Processor Network Interface Card Activity(*)\DPCs Deferred/sec
    \Per Processor Network Interface Card Activity(*)\Tcp Offload Send bytes/sec
    \Per Processor Network Interface Card Activity(*)\Tcp Offload Receive bytes/sec
    \Per Processor Network Interface Card Activity(*)\Tcp Offload Send Request Calls/sec
    \Per Processor Network Interface Card Activity(*)\Tcp Offload Receive Indications/sec
    \Per Processor Network Interface Card Activity(*)\Low Resource Received Packets/sec
    \Per Processor Network Interface Card Activity(*)\Low Resource Receive Indications/sec
    \Per Processor Network Interface Card Activity(*)\RSS Indirection Table Change Calls/sec
    \Per Processor Network Interface Card Activity(*)\Build Scatter Gather List Calls/sec
    \Per Processor Network Interface Card Activity(*)\Sent Complete Packets/sec
    \Per Processor Network Interface Card Activity(*)\Sent Packets/sec
    \Per Processor Network Interface Card Activity(*)\Send Complete Calls/sec
    \Per Processor Network Interface Card Activity(*)\Send Request Calls/sec
    \Per Processor Network Interface Card Activity(*)\DPCs Queued on Other CPUs/sec
    \Per Processor Network Interface Card Activity(*)\Returned Packets/sec
    \Per Processor Network Interface Card Activity(*)\Received Packets/sec
    \Per Processor Network Interface Card Activity(*)\Return Packet Calls/sec
    \Per Processor Network Interface Card Activity(*)\Receive Indications/sec
    \Per Processor Network Interface Card Activity(*)\Interrupts/sec
    \Per Processor Network Interface Card Activity(*)\DPCs Queued/sec

Physical Network Interface Card Activity (The Physical Network Interface Card Activity counter set measures events on a physical network card.)

    \Physical Network Interface Card Activity(*)\Low Power Transitions (Lifetime)
    \Physical Network Interface Card Activity(*)\% Time Suspended (Lifetime)
    \Physical Network Interface Card Activity(*)\% Time Suspended (Instantaneous)
    \Physical Network Interface Card Activity(*)\Device Power State

PhysicalDisk (The Physical Disk performance object consists of counters that monitor hard or fixed disk drive on a computer.  Disks are used to store file, program, and paging data and are read to retrieve these items, and written to record changes to them.  The values of physical disk counters are sums of the values of the logical disks (or partitions) into which they are divided.)

    \PhysicalDisk(*)\Current Disk Queue Length
    \PhysicalDisk(*)\% Disk Time
    \PhysicalDisk(*)\Avg. Disk Queue Length
    \PhysicalDisk(*)\% Disk Read Time
    \PhysicalDisk(*)\Avg. Disk Read Queue Length
    \PhysicalDisk(*)\% Disk Write Time
    \PhysicalDisk(*)\Avg. Disk Write Queue Length
    \PhysicalDisk(*)\Avg. Disk sec/Transfer
    \PhysicalDisk(*)\Avg. Disk sec/Read
    \PhysicalDisk(*)\Avg. Disk sec/Write
    \PhysicalDisk(*)\Disk Transfers/sec
    \PhysicalDisk(*)\Disk Reads/sec
    \PhysicalDisk(*)\Disk Writes/sec
    \PhysicalDisk(*)\Disk Bytes/sec
    \PhysicalDisk(*)\Disk Read Bytes/sec
    \PhysicalDisk(*)\Disk Write Bytes/sec
    \PhysicalDisk(*)\Avg. Disk Bytes/Transfer
    \PhysicalDisk(*)\Avg. Disk Bytes/Read
    \PhysicalDisk(*)\Avg. Disk Bytes/Write
    \PhysicalDisk(*)\% Idle Time
    \PhysicalDisk(*)\Split IO/Sec

Power Meter (This counter set displays power metering and budgeting information)

    \Power Meter(*)\Power Budget
    \Power Meter(*)\Power

PowerShell Workflow (Displays performance counters for PowerShell Workflow engine.)

    \PowerShell Workflow(*)\PowerShell Remoting: # of connections closed-reopened
    \PowerShell Workflow(*)\PowerShell Remoting: # of disposed connections
    \PowerShell Workflow(*)\PowerShell Remoting: # of created connections
    \PowerShell Workflow(*)\PowerShell Remoting: # of forced to wait requests in queue
    \PowerShell Workflow(*)\PowerShell Remoting: # of requests being serviced
    \PowerShell Workflow(*)\PowerShell Remoting: # of pending requests in queue
    \PowerShell Workflow(*)\Activity Host Manager: host processes pool size
    \PowerShell Workflow(*)\Activity Host Manager: # of disposed host processes
    \PowerShell Workflow(*)\Activity Host Manager: # of created host processes
    \PowerShell Workflow(*)\Activity Host Manager: # of pending requests in queue
    \PowerShell Workflow(*)\Activity Host Manager: # of incoming requests/sec
    \PowerShell Workflow(*)\Activity Host Manager: # of failed requests in queue
    \PowerShell Workflow(*)\Activity Host Manager: # of failed requests/sec
    \PowerShell Workflow(*)\Activity Host Manager: # of busy host processes
    \PowerShell Workflow(*)\# of waiting workflow jobs
    \PowerShell Workflow(*)\# of terminated workflow jobs / sec
    \PowerShell Workflow(*)\# of terminated workflow jobs
    \PowerShell Workflow(*)\# of suspended workflow jobs/sec
    \PowerShell Workflow(*)\# of suspended workflow jobs
    \PowerShell Workflow(*)\# of succeeded workflow jobs/sec
    \PowerShell Workflow(*)\# of succeeded workflow jobs
    \PowerShell Workflow(*)\# of stopped workflow jobs / sec
    \PowerShell Workflow(*)\# of stopped workflow jobs
    \PowerShell Workflow(*)\# of running workflow jobs / sec
    \PowerShell Workflow(*)\# of running workflow jobs
    \PowerShell Workflow(*)\# of resumed workflow jobs/sec
    \PowerShell Workflow(*)\# of resumed workflow jobs
    \PowerShell Workflow(*)\# of failed workflow jobs/sec
    \PowerShell Workflow(*)\# of failed workflow jobs

Print Queue (Displays performance statistics about a Print Queue.)

    \Print Queue(*)\Total Jobs Printed
    \Print Queue(*)\Bytes Printed/sec
    \Print Queue(*)\Total Pages Printed
    \Print Queue(*)\Jobs
    \Print Queue(*)\References
    \Print Queue(*)\Max References
    \Print Queue(*)\Jobs Spooling
    \Print Queue(*)\Max Jobs Spooling
    \Print Queue(*)\Out of Paper Errors
    \Print Queue(*)\Not Ready Errors
    \Print Queue(*)\Job Errors
    \Print Queue(*)\Enumerate Network Printer Calls
    \Print Queue(*)\Add Network Printer Calls

Process (The Process performance object consists of counters that monitor running application program and system processes.  All the threads in a process share the same address space and have access to the same data.)

    \Process(*)\% Processor Time
    \Process(*)\% User Time
    \Process(*)\% Privileged Time
    \Process(*)\Virtual Bytes Peak
    \Process(*)\Virtual Bytes
    \Process(*)\Page Faults/sec
    \Process(*)\Working Set Peak
    \Process(*)\Working Set
    \Process(*)\Page File Bytes Peak
    \Process(*)\Page File Bytes
    \Process(*)\Private Bytes
    \Process(*)\Thread Count
    \Process(*)\Priority Base
    \Process(*)\Elapsed Time
    \Process(*)\ID Process
    \Process(*)\Creating Process ID
    \Process(*)\Pool Paged Bytes
    \Process(*)\Pool Nonpaged Bytes
    \Process(*)\Handle Count
    \Process(*)\IO Read Operations/sec
    \Process(*)\IO Write Operations/sec
    \Process(*)\IO Data Operations/sec
    \Process(*)\IO Other Operations/sec
    \Process(*)\IO Read Bytes/sec
    \Process(*)\IO Write Bytes/sec
    \Process(*)\IO Data Bytes/sec
    \Process(*)\IO Other Bytes/sec
    \Process(*)\Working Set - Private

Processor (The Processor performance object consists of counters that measure aspects of processor activity. The processor is the part of the computer that performs arithmetic and logical computations, initiates operations on peripherals, and runs the threads of processes.  A computer can have multiple processors.  The processor object represents each processor as an instance of the object.)

    \Processor(*)\% Processor Time
    \Processor(*)\% User Time
    \Processor(*)\% Privileged Time
    \Processor(*)\Interrupts/sec
    \Processor(*)\% DPC Time
    \Processor(*)\% Interrupt Time
    \Processor(*)\DPCs Queued/sec
    \Processor(*)\DPC Rate
    \Processor(*)\% Idle Time
    \Processor(*)\% C1 Time
    \Processor(*)\% C2 Time
    \Processor(*)\% C3 Time
    \Processor(*)\C1 Transitions/sec
    \Processor(*)\C2 Transitions/sec
    \Processor(*)\C3 Transitions/sec

Processor Information (The Processor Information performance counter set consists of counters that measure aspects of processor activity. The processor is the part of the computer that performs arithmetic and logical computations, initiates operations on peripherals, and runs the threads of processes. A computer can have multiple processors. On some computers, processors are organized in NUMA nodes that share hardware resources such as physical memory. The Processor Information counter set represents each processor as a pair of numbers, where the first number is the NUMA node number and the second number is the zero-based index of the processor within that NUMA node. If the computer does not use NUMA nodes, the first number is zero.)

    \Processor Information(*)\Performance Limit Flags
    \Processor Information(*)\% Performance Limit
    \Processor Information(*)\% Privileged Utility
    \Processor Information(*)\% Processor Utility
    \Processor Information(*)\% Processor Performance
    \Processor Information(*)\Idle Break Events/sec
    \Processor Information(*)\Average Idle Time
    \Processor Information(*)\Clock Interrupts/sec
    \Processor Information(*)\Processor State Flags
    \Processor Information(*)\% of Maximum Frequency
    \Processor Information(*)\Processor Frequency
    \Processor Information(*)\Parking Status
    \Processor Information(*)\% Priority Time
    \Processor Information(*)\C3 Transitions/sec
    \Processor Information(*)\C2 Transitions/sec
    \Processor Information(*)\C1 Transitions/sec
    \Processor Information(*)\% C3 Time
    \Processor Information(*)\% C2 Time
    \Processor Information(*)\% C1 Time
    \Processor Information(*)\% Idle Time
    \Processor Information(*)\DPC Rate
    \Processor Information(*)\DPCs Queued/sec
    \Processor Information(*)\% Interrupt Time
    \Processor Information(*)\% DPC Time
    \Processor Information(*)\Interrupts/sec
    \Processor Information(*)\% Privileged Time
    \Processor Information(*)\% User Time
    \Processor Information(*)\% Processor Time

RAS (VPN counters which keep track of their values since service start)

    \RAS\Bytes Transmitted By Disconnected Clients
    \RAS\Bytes Received By Disconnected Clients
    \RAS\Failed Authentications
    \RAS\Max Clients
    \RAS\Total Clients

RAS Port (The RAS Object Type handles individual ports of the RAS device on your system.)

    \RAS Port(*)\Bytes Transmitted
    \RAS Port(*)\Bytes Received
    \RAS Port(*)\Frames Transmitted
    \RAS Port(*)\Frames Received
    \RAS Port(*)\Percent Compression Out
    \RAS Port(*)\Percent Compression In
    \RAS Port(*)\CRC Errors
    \RAS Port(*)\Timeout Errors
    \RAS Port(*)\Serial Overrun Errors
    \RAS Port(*)\Alignment Errors
    \RAS Port(*)\Buffer Overrun Errors
    \RAS Port(*)\Total Errors
    \RAS Port(*)\Bytes Transmitted/Sec
    \RAS Port(*)\Bytes Received/Sec
    \RAS Port(*)\Frames Transmitted/Sec
    \RAS Port(*)\Frames Received/Sec
    \RAS Port(*)\Total Errors/Sec

RAS Total (The RAS Object Type handles all combined ports of the RAS device on your system.)

    \RAS Total\Bytes Transmitted
    \RAS Total\Bytes Received
    \RAS Total\Frames Transmitted
    \RAS Total\Frames Received
    \RAS Total\Percent Compression Out
    \RAS Total\Percent Compression In
    \RAS Total\CRC Errors
    \RAS Total\Timeout Errors
    \RAS Total\Serial Overrun Errors
    \RAS Total\Alignment Errors
    \RAS Total\Buffer Overrun Errors
    \RAS Total\Total Errors
    \RAS Total\Bytes Transmitted/Sec
    \RAS Total\Bytes Received/Sec
    \RAS Total\Frames Transmitted/Sec
    \RAS Total\Frames Received/Sec
    \RAS Total\Total Errors/Sec
    \RAS Total\Total Connections

RDMA Activity (The RDMA Activity counter set measures RDMA activity on a NetworkDirect-capable network interface card.)

    \RDMA Activity(*)\RDMA Outbound Frames/sec
    \RDMA Activity(*)\RDMA Inbound Frames/sec
    \RDMA Activity(*)\RDMA Outbound Bytes/sec
    \RDMA Activity(*)\RDMA Inbound Bytes/sec
    \RDMA Activity(*)\RDMA Completion Queue Errors
    \RDMA Activity(*)\RDMA Active Connections
    \RDMA Activity(*)\RDMA Connection Errors
    \RDMA Activity(*)\RDMA Failed Connection Attempts
    \RDMA Activity(*)\RDMA Accepted Connections
    \RDMA Activity(*)\RDMA Initiated Connections

ReadyBoost Cache (Displays performance statistics about ReadyBoost Caches.)

    \ReadyBoost Cache\Bytes cached
    \ReadyBoost Cache\Cache space used
    \ReadyBoost Cache\Compression Ratio
    \ReadyBoost Cache\Total cache size bytes
    \ReadyBoost Cache\Cache reads/sec
    \ReadyBoost Cache\Cache read bytes/sec
    \ReadyBoost Cache\Skipped reads/sec
    \ReadyBoost Cache\Skipped read bytes/sec
    \ReadyBoost Cache\Total reads/sec
    \ReadyBoost Cache\Total read bytes/sec

Redirector (The Redirector performance object consists of counter that monitor network connections originating at the local computer.)

    \Redirector\Bytes Total/sec
    \Redirector\File Data Operations/sec
    \Redirector\Packets/sec
    \Redirector\Bytes Received/sec
    \Redirector\Packets Received/sec
    \Redirector\Read Bytes Paging/sec
    \Redirector\Read Bytes Non-Paging/sec
    \Redirector\Read Bytes Cache/sec
    \Redirector\Read Bytes Network/sec
    \Redirector\Bytes Transmitted/sec
    \Redirector\Packets Transmitted/sec
    \Redirector\Write Bytes Paging/sec
    \Redirector\Write Bytes Non-Paging/sec
    \Redirector\Write Bytes Cache/sec
    \Redirector\Write Bytes Network/sec
    \Redirector\File Read Operations/sec
    \Redirector\Read Operations Random/sec
    \Redirector\Read Packets/sec
    \Redirector\Reads Large/sec
    \Redirector\Read Packets Small/sec
    \Redirector\File Write Operations/sec
    \Redirector\Write Operations Random/sec
    \Redirector\Write Packets/sec
    \Redirector\Writes Large/sec
    \Redirector\Write Packets Small/sec
    \Redirector\Reads Denied/sec
    \Redirector\Writes Denied/sec
    \Redirector\Network Errors/sec
    \Redirector\Server Sessions
    \Redirector\Server Reconnects
    \Redirector\Connects Core
    \Redirector\Connects Lan Manager 2.0
    \Redirector\Connects Lan Manager 2.1
    \Redirector\Connects Windows NT
    \Redirector\Server Disconnects
    \Redirector\Server Sessions Hung
    \Redirector\Current Commands

ReFS (Information on the ReFS file system performance counters.)

    \ReFS(*)\Delete Queue entries
    \ReFS(*)\Dirty table list entries
    \ReFS(*)\Dirty metadata pages
    \ReFS(*)\Container Move Failure Count
    \ReFS(*)\Compaction Failure Count
    \ReFS(*)\Container moves failed due to ineligible container
    \ReFS(*)\Container Move Retry Count
    \ReFS(*)\Compactions failed due to max fragmentation
    \ReFS(*)\Compactions failed due to ineligible container
    \ReFS(*)\Compacted Container Fill Ratio (%)
    \ReFS(*)\Compaction write latency (100 ns)
    \ReFS(*)\Compaction read latency (100 ns)
    \ReFS(*)\Data Compactions/sec
    \ReFS(*)\Trim latency (100 ns)
    \ReFS(*)\Log fill percentage
    \ReFS(*)\Current Fast Tier Metadata Fill Percentage
    \ReFS(*)\Current Slow Tier Metadata Fill Percentage
    \ReFS(*)\Log writes/sec
    \ReFS(*)\Checkpoints/sec
    \ReFS(*)\Tree updates/sec
    \ReFS(*)\Checkpoint latency (100 ns)
    \ReFS(*)\Tree update latency (100 ns)
    \ReFS(*)\Fast Tier Destaged Container Fill Ratio (%)
    \ReFS(*)\Slow Tier Destaged Container Fill Ratio (%)
    \ReFS(*)\Fast tier destage write latency (100 ns)
    \ReFS(*)\Fast tier destage read latency (100 ns)
    \ReFS(*)\Slow tier destage write latency (100 ns)
    \ReFS(*)\Slow tier destage read latency (100 ns)
    \ReFS(*)\Current Fast Tier Data Fill Percentage
    \ReFS(*)\Current Slow Tier Data Fill Percentage
    \ReFS(*)\Container Destages From Fast Tier/sec
    \ReFS(*)\Container Destages From Slow Tier/sec
    \ReFS(*)\Allocation of Data Clusters on Slow Tier/sec
    \ReFS(*)\Allocation of Data Clusters on Fast Tier/sec
    \ReFS(*)\Allocation of Metadata Clusters on Slow Tier/sec
    \ReFS(*)\Allocation of Metadata Clusters on Fast Tier/sec
    \ReFS(*)\Data In Place Write Clusters/sec
    \ReFS(*)\Total Allocation of Clusters/sec

RemoteFX Graphics (The RemoteFX encoding performance object consists of counters that measure the performance of RemoteFX graphics encoding)

    \RemoteFX Graphics(*)\Source Frames/Second
    \RemoteFX Graphics(*)\Average Encoding Time
    \RemoteFX Graphics(*)\Frame Quality
    \RemoteFX Graphics(*)\Frames Skipped/Second - Insufficient Server Resources
    \RemoteFX Graphics(*)\Frames Skipped/Second - Insufficient Network Resources
    \RemoteFX Graphics(*)\Frames Skipped/Second - Insufficient Client Resources
    \RemoteFX Graphics(*)\Output Frames/Second
    \RemoteFX Graphics(*)\Graphics Compression ratio
    \RemoteFX Graphics(*)\Input Frames/Second

RemoteFX Network (This is counter set for the per session RemoteFX network counters)

    \RemoteFX Network(*)\Total Received Bytes
    \RemoteFX Network(*)\Total Sent Bytes
    \RemoteFX Network(*)\Current UDP Bandwidth
    \RemoteFX Network(*)\Current UDP RTT
    \RemoteFX Network(*)\Base UDP RTT
    \RemoteFX Network(*)\FEC Rate
    \RemoteFX Network(*)\Retransmission Rate
    \RemoteFX Network(*)\Loss Rate
    \RemoteFX Network(*)\Sent Rate P3
    \RemoteFX Network(*)\Sent Rate P2
    \RemoteFX Network(*)\Sent Rate P1
    \RemoteFX Network(*)\Sent Rate P0
    \RemoteFX Network(*)\UDP Packets Sent/sec
    \RemoteFX Network(*)\UDP Sent Rate
    \RemoteFX Network(*)\TCP Sent Rate
    \RemoteFX Network(*)\Total Sent Rate
    \RemoteFX Network(*)\UDP Packets Received/sec
    \RemoteFX Network(*)\UDP Received Rate
    \RemoteFX Network(*)\TCP Received Rate
    \RemoteFX Network(*)\Total Received Rate
    \RemoteFX Network(*)\Current TCP Bandwidth
    \RemoteFX Network(*)\Current TCP RTT
    \RemoteFX Network(*)\Base TCP RTT

RemoteFX Root GPU Management (Displays RemoteFX Root GPU Management Counters)

    \RemoteFX Root GPU Management(*)\Resources: VMs running RemoteFX
    \RemoteFX Root GPU Management(*)\VRAM: Reserved  % per GPU
    \RemoteFX Root GPU Management(*)\VRAM: Available MB per GPU

RemoteFX Synth3D VSC VM Device (Microsoft RemoteFX Synth3D VSC VM Device)

    \RemoteFX Synth3D VSC VM Device\Number of RDVGM restarted notifications
    \RemoteFX Synth3D VSC VM Device\Total number of created VMT channels
    \RemoteFX Synth3D VSC VM Device\Number of disconnected VMT channels
    \RemoteFX Synth3D VSC VM Device\Number of connected VMT channels
    \RemoteFX Synth3D VSC VM Device\Number of waiting VMT channels
    \RemoteFX Synth3D VSC VM Device\Number of created VMT channels

RemoteFX Synth3D VSC VM Transport Channel (Microsoft RemoteFX Synth3D VSC VM Transport Channel)

    \RemoteFX Synth3D VSC VM Transport Channel(*)\Number of space available event was reset per second
    \RemoteFX Synth3D VSC VM Transport Channel(*)\Number of space available event was reset
    \RemoteFX Synth3D VSC VM Transport Channel(*)\Number of data available event was reset per second
    \RemoteFX Synth3D VSC VM Transport Channel(*)\Number of data available event was reset
    \RemoteFX Synth3D VSC VM Transport Channel(*)\Number of data available signals sent per second
    \RemoteFX Synth3D VSC VM Transport Channel(*)\Number of data available signals sent
    \RemoteFX Synth3D VSC VM Transport Channel(*)\Number of space available signals sent per second
    \RemoteFX Synth3D VSC VM Transport Channel(*)\Number of space available signals sent
    \RemoteFX Synth3D VSC VM Transport Channel(*)\Number of data available signals received per second
    \RemoteFX Synth3D VSC VM Transport Channel(*)\Number of data available signals received
    \RemoteFX Synth3D VSC VM Transport Channel(*)\Number of space available signals received per second
    \RemoteFX Synth3D VSC VM Transport Channel(*)\Number of space available signals received

Search Indexer (Indexer PlugIn statistics)

    \Search Indexer(*)\Master Index Level.
    \Search Indexer(*)\Master Merges to Date
    \Search Indexer(*)\Master Merge Progress
    \Search Indexer(*)\Shadow Merge Levels
    \Search Indexer(*)\Shadow Merge Levels Threshold
    \Search Indexer(*)\Persistent Indexes
    \Search Indexer(*)\Index Size
    \Search Indexer(*)\Unique Keys
    \Search Indexer(*)\Documents Filtered
    \Search Indexer(*)\Work Items Created
    \Search Indexer(*)\Work Items Deleted
    \Search Indexer(*)\Clean WidSets
    \Search Indexer(*)\Dirty WidSets
    \Search Indexer(*)\Master Merges Now.
    \Search Indexer(*)\Active Connections
    \Search Indexer(*)\Queries
    \Search Indexer(*)\Queries Failed
    \Search Indexer(*)\Queries Succeeded
    \Search Indexer(*)\L0 Indexes (Wordlists)
    \Search Indexer(*)\L0 Merges (flushes) Now.
    \Search Indexer(*)\L0 Merge (Flush) Speed - Average
    \Search Indexer(*)\L0 Merge (Flush) - Count
    \Search Indexer(*)\L0 Merge (Flush) Speed - Last
    \Search Indexer(*)\Persistent Indexes L1
    \Search Indexer(*)\L1 Merges Now.
    \Search Indexer(*)\L1 Merge Speed - average
    \Search Indexer(*)\L1 Merge - Count
    \Search Indexer(*)\L1 Merge Speed - last
    \Search Indexer(*)\Persistent Indexes L2
    \Search Indexer(*)\L2 Merges Now.
    \Search Indexer(*)\L2 Merge Speed - average
    \Search Indexer(*)\L2 Merge - Count
    \Search Indexer(*)\L2 Merge Speed - last
    \Search Indexer(*)\Persistent Indexes L3
    \Search Indexer(*)\L3 Merges Now.
    \Search Indexer(*)\L3 Merge Speed - average
    \Search Indexer(*)\L3 Merge - Count
    \Search Indexer(*)\L3 Merge Speed - last
    \Search Indexer(*)\Persistent Indexes L4
    \Search Indexer(*)\L4 Merges Now.
    \Search Indexer(*)\L4 Merge Speed - average
    \Search Indexer(*)\L4 Merge - Count
    \Search Indexer(*)\L4 Merge Speed - last
    \Search Indexer(*)\Persistent Indexes L5
    \Search Indexer(*)\L5 Merges Now.
    \Search Indexer(*)\L5 Merge Speed - average
    \Search Indexer(*)\L5 Merge - Count
    \Search Indexer(*)\L5 Merge Speed - last
    \Search Indexer(*)\Persistent Indexes L6
    \Search Indexer(*)\L6 Merges Now.
    \Search Indexer(*)\L6 Merge Speed - average
    \Search Indexer(*)\L6 Merge - Count
    \Search Indexer(*)\L6 Merge Speed - last
    \Search Indexer(*)\Persistent Indexes L7
    \Search Indexer(*)\L7 Merges Now.
    \Search Indexer(*)\L7 Merge Speed - average
    \Search Indexer(*)\L7 Merge - Count
    \Search Indexer(*)\L7 Merge Speed - last
    \Search Indexer(*)\Persistent Indexes L8
    \Search Indexer(*)\L8 Merges Now.
    \Search Indexer(*)\L8 Merge Speed - average
    \Search Indexer(*)\L8 Merge - Count
    \Search Indexer(*)\L8 Merge Speed - last

ServiceModelEndpoint 4.0.0.0 (ServiceModel performance counters for endpoint)

    \ServiceModelEndpoint 4.0.0.0(*)\Transactions Flowed Per Second
    \ServiceModelEndpoint 4.0.0.0(*)\Transactions Flowed
    \ServiceModelEndpoint 4.0.0.0(*)\Reliable Messaging Messages Dropped Per Second
    \ServiceModelEndpoint 4.0.0.0(*)\Reliable Messaging Messages Dropped
    \ServiceModelEndpoint 4.0.0.0(*)\Reliable Messaging Sessions Faulted Per Second
    \ServiceModelEndpoint 4.0.0.0(*)\Reliable Messaging Sessions Faulted
    \ServiceModelEndpoint 4.0.0.0(*)\Security Calls Not Authorized Per Second
    \ServiceModelEndpoint 4.0.0.0(*)\Security Calls Not Authorized
    \ServiceModelEndpoint 4.0.0.0(*)\Security Validation and Authentication Failures Per Second
    \ServiceModelEndpoint 4.0.0.0(*)\Security Validation and Authentication Failures
    \ServiceModelEndpoint 4.0.0.0(*)\Calls Duration
    \ServiceModelEndpoint 4.0.0.0(*)\Calls Faulted Per Second
    \ServiceModelEndpoint 4.0.0.0(*)\Calls Faulted
    \ServiceModelEndpoint 4.0.0.0(*)\Calls Failed Per Second
    \ServiceModelEndpoint 4.0.0.0(*)\Calls Failed
    \ServiceModelEndpoint 4.0.0.0(*)\Calls Outstanding
    \ServiceModelEndpoint 4.0.0.0(*)\Calls Per Second
    \ServiceModelEndpoint 4.0.0.0(*)\Calls

ServiceModelOperation 4.0.0.0 (ServiceModelOperation 4.0.0.0 performance counters)

    \ServiceModelOperation 4.0.0.0(*)\Transactions Flowed Per Second
    \ServiceModelOperation 4.0.0.0(*)\Transactions Flowed
    \ServiceModelOperation 4.0.0.0(*)\Security Calls Not Authorized Per Second
    \ServiceModelOperation 4.0.0.0(*)\Security Calls Not Authorized
    \ServiceModelOperation 4.0.0.0(*)\Security Validation and Authentication Failures Per Second
    \ServiceModelOperation 4.0.0.0(*)\Security Validation and Authentication Failures
    \ServiceModelOperation 4.0.0.0(*)\Calls Duration
    \ServiceModelOperation 4.0.0.0(*)\Calls Faulted Per Second
    \ServiceModelOperation 4.0.0.0(*)\Calls Faulted
    \ServiceModelOperation 4.0.0.0(*)\Call Failed Per Second
    \ServiceModelOperation 4.0.0.0(*)\Calls Failed
    \ServiceModelOperation 4.0.0.0(*)\Calls Outstanding
    \ServiceModelOperation 4.0.0.0(*)\Calls Per Second
    \ServiceModelOperation 4.0.0.0(*)\Calls

ServiceModelService 4.0.0.0 (ServiceModel performance counters for service)

    \ServiceModelService 4.0.0.0(*)\Percent Of Max Concurrent Sessions
    \ServiceModelService 4.0.0.0(*)\Percent Of Max Concurrent Instances
    \ServiceModelService 4.0.0.0(*)\Percent Of Max Concurrent Calls
    \ServiceModelService 4.0.0.0(*)\Queued Messages Dropped Per Second
    \ServiceModelService 4.0.0.0(*)\Queued Messages Dropped
    \ServiceModelService 4.0.0.0(*)\Queued Messages Rejected Per Second
    \ServiceModelService 4.0.0.0(*)\Queued Messages Rejected
    \ServiceModelService 4.0.0.0(*)\Queued Poison Messages Per Second
    \ServiceModelService 4.0.0.0(*)\Queued Poison Messages
    \ServiceModelService 4.0.0.0(*)\Transacted Operations In Doubt Per Second
    \ServiceModelService 4.0.0.0(*)\Transacted Operations In Doubt
    \ServiceModelService 4.0.0.0(*)\Transacted Operations Aborted Per Second
    \ServiceModelService 4.0.0.0(*)\Transacted Operations Aborted
    \ServiceModelService 4.0.0.0(*)\Transacted Operations Committed Per Second
    \ServiceModelService 4.0.0.0(*)\Transacted Operations Committed
    \ServiceModelService 4.0.0.0(*)\Transactions Flowed Per Second
    \ServiceModelService 4.0.0.0(*)\Transactions Flowed
    \ServiceModelService 4.0.0.0(*)\Reliable Messaging Messages Dropped Per Second
    \ServiceModelService 4.0.0.0(*)\Reliable Messaging Messages Dropped
    \ServiceModelService 4.0.0.0(*)\Reliable Messaging Sessions Faulted Per Second
    \ServiceModelService 4.0.0.0(*)\Reliable Messaging Sessions Faulted
    \ServiceModelService 4.0.0.0(*)\Instances Created Per Second
    \ServiceModelService 4.0.0.0(*)\Instances
    \ServiceModelService 4.0.0.0(*)\Security Calls Not Authorized Per Second
    \ServiceModelService 4.0.0.0(*)\Security Calls Not Authorized
    \ServiceModelService 4.0.0.0(*)\Security Validation and Authentication Failures Per Second
    \ServiceModelService 4.0.0.0(*)\Security Validation and Authentication Failures
    \ServiceModelService 4.0.0.0(*)\Calls Duration
    \ServiceModelService 4.0.0.0(*)\Calls Faulted Per Second
    \ServiceModelService 4.0.0.0(*)\Calls Faulted
    \ServiceModelService 4.0.0.0(*)\Calls Failed Per Second
    \ServiceModelService 4.0.0.0(*)\Calls Failed
    \ServiceModelService 4.0.0.0(*)\Calls Outstanding
    \ServiceModelService 4.0.0.0(*)\Calls Per Second
    \ServiceModelService 4.0.0.0(*)\Calls

SMB Client Shares (This counter set displays information about server shares that are being accessed by the client using SMB protocol version 2 or higher.)

    \SMB Client Shares(*)\Compressed Bytes Sent/sec
    \SMB Client Shares(*)\Compressed Responses/sec
    \SMB Client Shares(*)\Compressed Requests/sec
    \SMB Client Shares(*)\Turbo I/O Writes/sec
    \SMB Client Shares(*)\Turbo I/O Reads/sec
    \SMB Client Shares(*)\Write Requests transmitted via SMB Direct/sec
    \SMB Client Shares(*)\Read Requests transmitted via SMB Direct/sec
    \SMB Client Shares(*)\Write Bytes transmitted via SMB Direct/sec
    \SMB Client Shares(*)\Read Bytes transmitted via SMB Direct/sec
    \SMB Client Shares(*)\Credit Stalls/sec
    \SMB Client Shares(*)\Metadata Requests/sec
    \SMB Client Shares(*)\Avg. Data Queue Length
    \SMB Client Shares(*)\Avg. Write Queue Length
    \SMB Client Shares(*)\Avg. Read Queue Length
    \SMB Client Shares(*)\Current Data Queue Length
    \SMB Client Shares(*)\Avg. sec/Data Request
    \SMB Client Shares(*)\Avg. Data Bytes/Request
    \SMB Client Shares(*)\Data Requests/sec
    \SMB Client Shares(*)\Data Bytes/sec
    \SMB Client Shares(*)\Avg. sec/Write
    \SMB Client Shares(*)\Avg. sec/Read
    \SMB Client Shares(*)\Avg. Bytes/Write
    \SMB Client Shares(*)\Avg. Bytes/Read
    \SMB Client Shares(*)\Write Requests/sec
    \SMB Client Shares(*)\Read Requests/sec
    \SMB Client Shares(*)\Write Bytes/sec
    \SMB Client Shares(*)\Read Bytes/sec

SMB Direct Connection (The SMB Direct Connection performance counter set consists of counters that measure connection activity. A computer can have multiple SMB Direct connections. The SMB Direct Connection counter set represents each connection as a pair of IP addresses and ports, where the first IP address/port represents the connection's local endpoint and the second IP address/port represents the connection's remote endpoint.)

    \SMB Direct Connection(*)\Spurious SCQ Notification Events
    \SMB Direct Connection(*)\Spurious RCQ Notification Events
    \SMB Direct Connection(*)\RCQ Notification Events/sec
    \SMB Direct Connection(*)\SCQ Notification Events/sec
    \SMB Direct Connection(*)\RDMA Registrations/sec
    \SMB Direct Connection(*)\Receives/sec
    \SMB Direct Connection(*)\Stalls (RDMA Read)/sec
    \SMB Direct Connection(*)\Bytes RDMA Written/sec
    \SMB Direct Connection(*)\Bytes RDMA Read/sec
    \SMB Direct Connection(*)\Bytes Sent/sec
    \SMB Direct Connection(*)\Bytes Received/sec
    \SMB Direct Connection(*)\Memory Regions
    \SMB Direct Connection(*)\Remote Invalidations/sec
    \SMB Direct Connection(*)\Sends/sec
    \SMB Direct Connection(*)\Stalls (RDMA Registrations)/sec
    \SMB Direct Connection(*)\Stalls (Send Queue)/sec
    \SMB Direct Connection(*)\Stalls (Send Credit)/sec

SMB Server (The SMB Server performance counters measure file server activity for SMB protocol versions 2 and higher)

    \SMB Server\Receive Bytes/sec
    \SMB Server\Send Bytes/sec
    \SMB Server\Write Requests/sec
    \SMB Server\Write Bytes/sec
    \SMB Server\Read Requests/sec
    \SMB Server\Read Bytes/sec

SMB Server Sessions (This counter set displays information about SMB server sessions using SMB protocol version 2 or higher)

    \SMB Server Sessions(*)\Current Data Queue Length
    \SMB Server Sessions(*)\Data Requests/sec
    \SMB Server Sessions(*)\Data Bytes/sec
    \SMB Server Sessions(*)\Avg. Data Queue Length
    \SMB Server Sessions(*)\Avg. Write Queue Length
    \SMB Server Sessions(*)\Avg. Read Queue Length
    \SMB Server Sessions(*)\Avg. Bytes/Write
    \SMB Server Sessions(*)\Avg. Bytes/Read
    \SMB Server Sessions(*)\Avg. Data Bytes/Request
    \SMB Server Sessions(*)\Avg. sec/Data Request
    \SMB Server Sessions(*)\Metadata Requests/sec
    \SMB Server Sessions(*)\Total Failed Persistent Handle Reopen Count
    \SMB Server Sessions(*)\Total Persistent Handle Reopen Count
    \SMB Server Sessions(*)\% Persistent Handles
    \SMB Server Sessions(*)\Total Failed Resilient Handle Reopen Count
    \SMB Server Sessions(*)\Total Resilient Handle Reopen Count
    \SMB Server Sessions(*)\% Resilient Handles
    \SMB Server Sessions(*)\Total Failed Durable Handle Reopen Count
    \SMB Server Sessions(*)\Total Durable Handle Reopen Count
    \SMB Server Sessions(*)\Current Durable Open File Count
    \SMB Server Sessions(*)\Files Opened/sec
    \SMB Server Sessions(*)\Total File Open Count
    \SMB Server Sessions(*)\Read Bytes/sec
    \SMB Server Sessions(*)\Avg. sec/Read
    \SMB Server Sessions(*)\Read Requests/sec
    \SMB Server Sessions(*)\Write Bytes/sec
    \SMB Server Sessions(*)\Avg. sec/Write
    \SMB Server Sessions(*)\Write Requests/sec
    \SMB Server Sessions(*)\Avg. sec/Request
    \SMB Server Sessions(*)\Current Pending Requests
    \SMB Server Sessions(*)\Transferred Bytes/sec
    \SMB Server Sessions(*)\Sent Bytes/sec
    \SMB Server Sessions(*)\Current Open File Count
    \SMB Server Sessions(*)\Tree Connect Count
    \SMB Server Sessions(*)\Requests/sec
    \SMB Server Sessions(*)\Received Bytes/sec

SMB Server Shares (This counter set displays information about SMB server shares that are shared using SMB protocol version 2 or higher.)

    \SMB Server Shares(*)\Compressed Requests/sec
    \SMB Server Shares(*)\Compressed Responses/sec
    \SMB Server Shares(*)\Bytes Compressed/sec
    \SMB Server Shares(*)\Write Bytes transmitted ByPassCSV/sec
    \SMB Server Shares(*)\Read Bytes transmitted ByPassCSV/sec
    \SMB Server Shares(*)\Read Requests transmitted via BypassCSV/sec
    \SMB Server Shares(*)\Write Requests transmitted via BypassCSV/sec
    \SMB Server Shares(*)\Current Bypass Open File Count
    \SMB Server Shares(*)\Read Bytes transmitted via SMB Direct/sec
    \SMB Server Shares(*)\Read Requests transmitted via SMB Direct/sec
    \SMB Server Shares(*)\Write Bytes transmitted via SMB Direct/sec
    \SMB Server Shares(*)\Write Requests transmitted via SMB Direct/sec
    \SMB Server Shares(*)\Current Data Queue Length
    \SMB Server Shares(*)\Data Requests/sec
    \SMB Server Shares(*)\Data Bytes/sec
    \SMB Server Shares(*)\Avg. Data Queue Length
    \SMB Server Shares(*)\Avg. Write Queue Length
    \SMB Server Shares(*)\Avg. Read Queue Length
    \SMB Server Shares(*)\Avg. Bytes/Write
    \SMB Server Shares(*)\Avg. Bytes/Read
    \SMB Server Shares(*)\Avg. Data Bytes/Request
    \SMB Server Shares(*)\Avg. sec/Data Request
    \SMB Server Shares(*)\Metadata Requests/sec
    \SMB Server Shares(*)\Total Failed Persistent Handle Reopen Count
    \SMB Server Shares(*)\Total Persistent Handle Reopen Count
    \SMB Server Shares(*)\% Persistent Handles
    \SMB Server Shares(*)\Total Failed Resilient Handle Reopen Count
    \SMB Server Shares(*)\Total Resilient Handle Reopen Count
    \SMB Server Shares(*)\% Resilient Handles
    \SMB Server Shares(*)\Total Failed Durable Handle Reopen Count
    \SMB Server Shares(*)\Total Durable Handle Reopen Count
    \SMB Server Shares(*)\Current Durable Open File Count
    \SMB Server Shares(*)\Files Opened/sec
    \SMB Server Shares(*)\Total File Open Count
    \SMB Server Shares(*)\Read Bytes/sec
    \SMB Server Shares(*)\Avg. sec/Read
    \SMB Server Shares(*)\Read Requests/sec
    \SMB Server Shares(*)\Write Bytes/sec
    \SMB Server Shares(*)\Avg. sec/Write
    \SMB Server Shares(*)\Write Requests/sec
    \SMB Server Shares(*)\Avg. sec/Request
    \SMB Server Shares(*)\Current Pending Requests
    \SMB Server Shares(*)\Transferred Bytes/sec
    \SMB Server Shares(*)\Sent Bytes/sec
    \SMB Server Shares(*)\Current Open File Count
    \SMB Server Shares(*)\Tree Connect Count
    \SMB Server Shares(*)\Requests/sec
    \SMB Server Shares(*)\Received Bytes/sec

SMSvcHost 4.0.0.0 (SMSvcHost 4.0.0.0 performance counters)

    \SMSvcHost 4.0.0.0\Protocol Failures over net.tcp
    \SMSvcHost 4.0.0.0\Protocol Failures over net.pipe
    \SMSvcHost 4.0.0.0\Dispatch Failures over net.tcp
    \SMSvcHost 4.0.0.0\Dispatch Failures over net.pipe
    \SMSvcHost 4.0.0.0\Connections Dispatched over net.tcp
    \SMSvcHost 4.0.0.0\Connections Dispatched over net.pipe
    \SMSvcHost 4.0.0.0\Connections Accepted over net.tcp
    \SMSvcHost 4.0.0.0\Connections Accepted over net.pipe
    \SMSvcHost 4.0.0.0\Registrations Active for net.tcp
    \SMSvcHost 4.0.0.0\Registrations Active for net.pipe
    \SMSvcHost 4.0.0.0\Uris Registered for net.tcp
    \SMSvcHost 4.0.0.0\Uris Registered for net.pipe
    \SMSvcHost 4.0.0.0\Uris Unregistered for net.tcp
    \SMSvcHost 4.0.0.0\Uris Unregistered for net.pipe

Storage Spaces Drt (The Storage Spaces Drt performance object consists of counters that show information about Storage Spaces dirty region tracking.)

    \Storage Spaces Drt(*)\Limit
    \Storage Spaces Drt(*)\Synchronizing Bytes
    \Storage Spaces Drt(*)\Synchronizing Count
    \Storage Spaces Drt(*)\Flushed Bytes
    \Storage Spaces Drt(*)\Flushed Count
    \Storage Spaces Drt(*)\Flushing Bytes
    \Storage Spaces Drt(*)\Flushing Count
    \Storage Spaces Drt(*)\Dirty Bytes
    \Storage Spaces Drt(*)\Dirty Count
    \Storage Spaces Drt(*)\Clean Bytes
    \Storage Spaces Drt(*)\Clean Count

Storage Spaces Tier (The Storage Spaces Tier performance object consists of counters that show information about Storage Spaces tiers.)

    \Storage Spaces Tier(*)\Tier Transfer Bytes (Average)
    \Storage Spaces Tier(*)\Tier Transfer Bytes/sec
    \Storage Spaces Tier(*)\Tier Transfers (Average)
    \Storage Spaces Tier(*)\Tier Transfer Latency
    \Storage Spaces Tier(*)\Tier Transfers/sec
    \Storage Spaces Tier(*)\Tier Transfers (Current)
    \Storage Spaces Tier(*)\Tier Write Bytes (Average)
    \Storage Spaces Tier(*)\Tier Write Bytes/sec
    \Storage Spaces Tier(*)\Tier Writes (Average)
    \Storage Spaces Tier(*)\Tier Write Latency
    \Storage Spaces Tier(*)\Tier Writes/sec
    \Storage Spaces Tier(*)\Tier Read Bytes (Average)
    \Storage Spaces Tier(*)\Tier Read Bytes/sec
    \Storage Spaces Tier(*)\Tier Reads (Average)
    \Storage Spaces Tier(*)\Tier Read Latency
    \Storage Spaces Tier(*)\Tier Reads/sec

Storage Spaces Virtual Disk (The Storage Spaces Virtual Disk performance object consists of counters that show information about Storage Spaces virtual disks.)

    \Storage Spaces Virtual Disk(*)\Virtual Disk Regeneration Total Bytes
    \Storage Spaces Virtual Disk(*)\Virtual Disk Regeneration Skipped Bytes
    \Storage Spaces Virtual Disk(*)\Virtual Disk Regeneration Outstanding Bytes
    \Storage Spaces Virtual Disk(*)\Virtual Disk Regeneration Processed Bytes
    \Storage Spaces Virtual Disk(*)\Virtual Disk Repair Phase 6 Status
    \Storage Spaces Virtual Disk(*)\Virtual Disk Repair Phase 6 Count
    \Storage Spaces Virtual Disk(*)\Virtual Disk Repair Phase 5 Status
    \Storage Spaces Virtual Disk(*)\Virtual Disk Repair Phase 5 Count
    \Storage Spaces Virtual Disk(*)\Virtual Disk Repair Phase 4 Status
    \Storage Spaces Virtual Disk(*)\Virtual Disk Repair Phase 4 Count
    \Storage Spaces Virtual Disk(*)\Virtual Disk Repair Phase 3 Status
    \Storage Spaces Virtual Disk(*)\Virtual Disk Repair Phase 3 Count
    \Storage Spaces Virtual Disk(*)\Virtual Disk Repair Phase 2 Status
    \Storage Spaces Virtual Disk(*)\Virtual Disk Repair Phase 2 Count
    \Storage Spaces Virtual Disk(*)\Virtual Disk Repair Phase 1 Status
    \Storage Spaces Virtual Disk(*)\Virtual Disk Repair Phase 1 Count
    \Storage Spaces Virtual Disk(*)\Virtual Disk Repair Need Phase 6 Count
    \Storage Spaces Virtual Disk(*)\Virtual Disk Repair Need Phase 2 Count
    \Storage Spaces Virtual Disk(*)\Virtual Disk Scope Regeneration Bytes
    \Storage Spaces Virtual Disk(*)\Virtual Disk Scope Regeneration Count
    \Storage Spaces Virtual Disk(*)\Virtual Disk Failed Replacement Bytes
    \Storage Spaces Virtual Disk(*)\Virtual Disk Failed Replacement Count
    \Storage Spaces Virtual Disk(*)\Virtual Disk Rebalance Replacement Bytes
    \Storage Spaces Virtual Disk(*)\Virtual Disk Rebalance Replacement Count
    \Storage Spaces Virtual Disk(*)\Virtual Disk Repair Replacement Bytes
    \Storage Spaces Virtual Disk(*)\Virtual Disk Repair Replacement Count
    \Storage Spaces Virtual Disk(*)\Virtual Disk Reason RegenReadError Bytes
    \Storage Spaces Virtual Disk(*)\Virtual Disk Reason RegenReadError
    \Storage Spaces Virtual Disk(*)\Virtual Disk Reason New Bytes
    \Storage Spaces Virtual Disk(*)\Virtual Disk Reason New
    \Storage Spaces Virtual Disk(*)\Virtual Disk Reason Retired Bytes
    \Storage Spaces Virtual Disk(*)\Virtual Disk Reason Retired
    \Storage Spaces Virtual Disk(*)\Virtual Disk Reason RegenWriteError Bytes
    \Storage Spaces Virtual Disk(*)\Virtual Disk Reason RegenWriteError
    \Storage Spaces Virtual Disk(*)\Virtual Disk Reason HardwareError Bytes
    \Storage Spaces Virtual Disk(*)\Virtual Disk Reason HardwareError
    \Storage Spaces Virtual Disk(*)\Virtual Disk Reason IoError Bytes
    \Storage Spaces Virtual Disk(*)\Virtual Disk Reason IoError
    \Storage Spaces Virtual Disk(*)\Virtual Disk Reason Failure Bytes
    \Storage Spaces Virtual Disk(*)\Virtual Disk Reason Failure
    \Storage Spaces Virtual Disk(*)\Virtual Disk Reason Missing Bytes
    \Storage Spaces Virtual Disk(*)\Virtual Disk Reason Missing
    \Storage Spaces Virtual Disk(*)\Virtual Disk Total Bytes
    \Storage Spaces Virtual Disk(*)\Virtual Disk Total
    \Storage Spaces Virtual Disk(*)\Virtual Disk Pending Deletion Bytes
    \Storage Spaces Virtual Disk(*)\Virtual Disk Pending Deletion
    \Storage Spaces Virtual Disk(*)\Virtual Disk Regenerating Bytes
    \Storage Spaces Virtual Disk(*)\Virtual Disk Regenerating
    \Storage Spaces Virtual Disk(*)\Virtual Disk Need Regeneration Bytes
    \Storage Spaces Virtual Disk(*)\Virtual Disk Need Regeneration
    \Storage Spaces Virtual Disk(*)\Virtual Disk Need Reallocation Bytes
    \Storage Spaces Virtual Disk(*)\Virtual Disk Need Reallocation
    \Storage Spaces Virtual Disk(*)\Virtual Disk Stale Bytes
    \Storage Spaces Virtual Disk(*)\Virtual Disk Stale
    \Storage Spaces Virtual Disk(*)\Virtual Disk Missing Bytes
    \Storage Spaces Virtual Disk(*)\Virtual Disk Missing
    \Storage Spaces Virtual Disk(*)\Virtual Disk Active Bytes
    \Storage Spaces Virtual Disk(*)\Virtual Disk Active

Storage Spaces Write Cache (The Storage Spaces Write Cache performance object consists of counters that show information about Storage Spaces write caches.)

    \Storage Spaces Write Cache(*)\Write Cache (Overlap) %
    \Storage Spaces Write Cache(*)\Write Cache (Overlap) Bytes/sec
    \Storage Spaces Write Cache(*)\Write Cache (Untrimmed) %
    \Storage Spaces Write Cache(*)\Write Cache (Untrimmed) Bytes/sec
    \Storage Spaces Write Cache(*)\Write Cache (Unaligned) %
    \Storage Spaces Write Cache(*)\Write Cache (Unaligned) Bytes/sec
    \Storage Spaces Write Cache(*)\Write Cache %
    \Storage Spaces Write Cache(*)\Write Cache Bytes/sec
    \Storage Spaces Write Cache(*)\Write Bypass %
    \Storage Spaces Write Cache(*)\Write Bypass Bytes/sec
    \Storage Spaces Write Cache(*)\Read Cache %
    \Storage Spaces Write Cache(*)\Read Cache Bytes/sec
    \Storage Spaces Write Cache(*)\Read Bypass %
    \Storage Spaces Write Cache(*)\Read Bypass Bytes/sec
    \Storage Spaces Write Cache(*)\Evict Cache (Overwrite) %
    \Storage Spaces Write Cache(*)\Evict Cache (Overwrite) Bytes/sec
    \Storage Spaces Write Cache(*)\Evict Cache (Destaged) %
    \Storage Spaces Write Cache(*)\Evict Cache (Destaged) Bytes/sec
    \Storage Spaces Write Cache(*)\Evict Cache Bytes/sec
    \Storage Spaces Write Cache(*)\Cache Size
    \Storage Spaces Write Cache(*)\Cache (Used) %
    \Storage Spaces Write Cache(*)\Cache (Used) Bytes
    \Storage Spaces Write Cache(*)\Cache (Reclaimable) %
    \Storage Spaces Write Cache(*)\Cache (Reclaimable) Bytes
    \Storage Spaces Write Cache(*)\Cache (Data) %
    \Storage Spaces Write Cache(*)\Cache (Data) Bytes
    \Storage Spaces Write Cache(*)\Cache Advances
    \Storage Spaces Write Cache(*)\Cache Destages (Current)
    \Storage Spaces Write Cache(*)\Cache Checkpoints

Synchronization (The Synchronization performance object consists of counters for kernel synchronization. The synchronization object represents each processor as an instance of the object.)

    \Synchronization(*)\Exec. Resource Boost Shared Owners/sec
    \Synchronization(*)\Exec. Resource Boost Excl. Owner/sec
    \Synchronization(*)\Exec. Resource Set Owner Pointer Shared (Existing Owner)/sec
    \Synchronization(*)\Exec. Resource Set Owner Pointer Shared (New Owner)/sec
    \Synchronization(*)\Exec. Resource Set Owner Pointer Exclusive/sec
    \Synchronization(*)\Exec. Resource no-Waits AcqShrdWaitForExcl/sec
    \Synchronization(*)\Exec. Resource Contention AcqShrdWaitForExcl/sec
    \Synchronization(*)\Exec. Resource Recursive Sh. Acquires AcqShrdWaitForExcl/sec
    \Synchronization(*)\Exec. Resource Acquires AcqShrdWaitForExcl/sec
    \Synchronization(*)\Exec. Resource Recursive Excl. Acquires AcqShrdWaitForExcl/sec
    \Synchronization(*)\Exec. Resource Attempts AcqShrdWaitForExcl/sec
    \Synchronization(*)\Exec. Resource no-Waits AcqShrdStarveExcl/sec
    \Synchronization(*)\Exec. Resource Contention AcqShrdStarveExcl/sec
    \Synchronization(*)\Exec. Resource Recursive Sh. Acquires AcqShrdStarveExcl/sec
    \Synchronization(*)\Exec. Resource Acquires AcqShrdStarveExcl/sec
    \Synchronization(*)\Exec. Resource Recursive Excl. Acquires AcqShrdStarveExcl/sec
    \Synchronization(*)\Exec. Resource Attempts AcqShrdStarveExcl/sec
    \Synchronization(*)\Exec. Resource no-Waits AcqShrdLite/sec
    \Synchronization(*)\Exec. Resource Contention AcqShrdLite/sec
    \Synchronization(*)\Exec. Resource Recursive Sh. Acquires AcqShrdLite/sec
    \Synchronization(*)\Exec. Resource Acquires AcqShrdLite/sec
    \Synchronization(*)\Exec. Resource Recursive Excl. Acquires AcqShrdLite/sec
    \Synchronization(*)\Exec. Resource Attempts AcqShrdLite/sec
    \Synchronization(*)\Exec. Resource no-Waits AcqExclLite/sec
    \Synchronization(*)\Exec. Resource Contention AcqExclLite/sec
    \Synchronization(*)\Exec. Resource Recursive Excl. Acquires AcqExclLite/sec
    \Synchronization(*)\Exec. Resource Acquires AcqExclLite/sec
    \Synchronization(*)\Exec. Resource Attempts AcqExclLite/sec
    \Synchronization(*)\Exec. Resource Total Conv. Exclusive To Shared/sec
    \Synchronization(*)\Exec. Resource Total Shared Releases/sec
    \Synchronization(*)\Exec. Resource Total Exclusive Releases/sec
    \Synchronization(*)\Exec. Resource Total Contentions/sec
    \Synchronization(*)\Exec. Resource Total Acquires/sec
    \Synchronization(*)\Exec. Resource Total Delete/sec
    \Synchronization(*)\Exec. Resource Total Re-Initialize/sec
    \Synchronization(*)\Exec. Resource Total Initialize/sec
    \Synchronization(*)\IPI Send Software Interrupts/sec
    \Synchronization(*)\IPI Send Routine Requests/sec
    \Synchronization(*)\IPI Send Broadcast Requests/sec
    \Synchronization(*)\Spinlock Spins/sec
    \Synchronization(*)\Spinlock Contentions/sec
    \Synchronization(*)\Spinlock Acquires/sec

SynchronizationNuma (The Synchronization performance object consists of counters for kernel synchronization. The synchronization object represents each processor as an instance of the object. The counters are aggregated based on the system NUMA topology.)

    \SynchronizationNuma(*)\Exec. Resource Boost Shared Owners/sec
    \SynchronizationNuma(*)\Exec. Resource Boost Excl. Owner/sec
    \SynchronizationNuma(*)\Exec. Resource Set Owner Pointer Shared (Existing Owner)/sec
    \SynchronizationNuma(*)\Exec. Resource Set Owner Pointer Shared (New Owner)/sec
    \SynchronizationNuma(*)\Exec. Resource Set Owner Pointer Exclusive/sec
    \SynchronizationNuma(*)\Exec. Resource no-Waits AcqShrdWaitForExcl/sec
    \SynchronizationNuma(*)\Exec. Resource Contention AcqShrdWaitForExcl/sec
    \SynchronizationNuma(*)\Exec. Resource Recursive Sh. Acquires AcqShrdWaitForExcl/sec
    \SynchronizationNuma(*)\Exec. Resource Acquires AcqShrdWaitForExcl/sec
    \SynchronizationNuma(*)\Exec. Resource Recursive Excl. Acquires AcqShrdWaitForExcl/sec
    \SynchronizationNuma(*)\Exec. Resource Attempts AcqShrdWaitForExcl/sec
    \SynchronizationNuma(*)\Exec. Resource no-Waits AcqShrdStarveExcl/sec
    \SynchronizationNuma(*)\Exec. Resource Contention AcqShrdStarveExcl/sec
    \SynchronizationNuma(*)\Exec. Resource Recursive Sh. Acquires AcqShrdStarveExcl/sec
    \SynchronizationNuma(*)\Exec. Resource Acquires AcqShrdStarveExcl/sec
    \SynchronizationNuma(*)\Exec. Resource Recursive Excl. Acquires AcqShrdStarveExcl/sec
    \SynchronizationNuma(*)\Exec. Resource Attempts AcqShrdStarveExcl/sec
    \SynchronizationNuma(*)\Exec. Resource no-Waits AcqShrdLite/sec
    \SynchronizationNuma(*)\Exec. Resource Contention AcqShrdLite/sec
    \SynchronizationNuma(*)\Exec. Resource Recursive Sh. Acquires AcqShrdLite/sec
    \SynchronizationNuma(*)\Exec. Resource Acquires AcqShrdLite/sec
    \SynchronizationNuma(*)\Exec. Resource Recursive Excl. Acquires AcqShrdLite/sec
    \SynchronizationNuma(*)\Exec. Resource Attempts AcqShrdLite/sec
    \SynchronizationNuma(*)\Exec. Resource no-Waits AcqExclLite/sec
    \SynchronizationNuma(*)\Exec. Resource Contention AcqExclLite/sec
    \SynchronizationNuma(*)\Exec. Resource Recursive Excl. Acquires AcqExclLite/sec
    \SynchronizationNuma(*)\Exec. Resource Acquires AcqExclLite/sec
    \SynchronizationNuma(*)\Exec. Resource Attempts AcqExclLite/sec
    \SynchronizationNuma(*)\Exec. Resource Total Conv. Exclusive To Shared/sec
    \SynchronizationNuma(*)\Exec. Resource Total Shared Releases/sec
    \SynchronizationNuma(*)\Exec. Resource Total Exclusive Releases/sec
    \SynchronizationNuma(*)\Exec. Resource Total Contentions/sec
    \SynchronizationNuma(*)\Exec. Resource Total Acquires/sec
    \SynchronizationNuma(*)\Exec. Resource Total Delete/sec
    \SynchronizationNuma(*)\Exec. Resource Total Re-Initialize/sec
    \SynchronizationNuma(*)\Exec. Resource Total Initialize/sec
    \SynchronizationNuma(*)\IPI Send Software Interrupts/sec
    \SynchronizationNuma(*)\IPI Send Routine Requests/sec
    \SynchronizationNuma(*)\IPI Send Broadcast Requests/sec
    \SynchronizationNuma(*)\Spinlock Spins/sec
    \SynchronizationNuma(*)\Spinlock Contentions/sec
    \SynchronizationNuma(*)\Spinlock Acquires/sec

System (The System performance object consists of counters that apply to more than one instance of a component processors on the computer.)

    \System\File Read Operations/sec
    \System\File Write Operations/sec
    \System\File Control Operations/sec
    \System\File Read Bytes/sec
    \System\File Write Bytes/sec
    \System\File Control Bytes/sec
    \System\Context Switches/sec
    \System\System Calls/sec
    \System\File Data Operations/sec
    \System\System Up Time
    \System\Processor Queue Length
    \System\Processes
    \System\Threads
    \System\Alignment Fixups/sec
    \System\Exception Dispatches/sec
    \System\Floating Emulations/sec
    \System\% Registry Quota In Use

TCPIP Performance Diagnostics (This counter set measures various TCPIP activity for performance diagnostics.)

    \TCPIP Performance Diagnostics\URO segment forwarding failures during software segmentation
    \TCPIP Performance Diagnostics\URO segments forwarded via software segmentation and checksum
    \TCPIP Performance Diagnostics\URO segments forwarded via software segmentation
    \TCPIP Performance Diagnostics\TCP RSC bytes received
    \TCPIP Performance Diagnostics\TCP RSC events
    \TCPIP Performance Diagnostics\UDP URO bytes received
    \TCPIP Performance Diagnostics\UDP URO events
    \TCPIP Performance Diagnostics\UDP datagrams created via software segmentation
    \TCPIP Performance Diagnostics\RSC segment forwarding failures during software segmentation
    \TCPIP Performance Diagnostics\RSC segments forwarded via software segmentation and checksum
    \TCPIP Performance Diagnostics\RSC segments forwarded via software segmentation
    \TCPIP Performance Diagnostics\RSC segments forwarded via LSO
    \TCPIP Performance Diagnostics\TCP timeouts
    \TCPIP Performance Diagnostics\TCP checksum errors
    \TCPIP Performance Diagnostics\Denied connect or send requests in low-power mode
    \TCPIP Performance Diagnostics\TCP connect requests/sec fallen off loopback fast path
    \TCPIP Performance Diagnostics\TCP connect requests fallen off loopback fast path
    \TCPIP Performance Diagnostics\TCP inbound segments/sec not processed via fast path
    \TCPIP Performance Diagnostics\TCP inbound segments not processed via fast path
    \TCPIP Performance Diagnostics\IPv6 outbound NBLs/sec not processed via fast path
    \TCPIP Performance Diagnostics\IPv6 outbound NBLs not processed via fast path
    \TCPIP Performance Diagnostics\IPv4 outbound NBLs/sec not processed via fast path
    \TCPIP Performance Diagnostics\IPv4 outbound NBLs not processed via fast path
    \TCPIP Performance Diagnostics\IPv6 NBLs/sec treated as non-prevalidated
    \TCPIP Performance Diagnostics\IPv6 NBLs treated as non-prevalidated
    \TCPIP Performance Diagnostics\IPv4 NBLs/sec treated as non-prevalidated
    \TCPIP Performance Diagnostics\IPv4 NBLs treated as non-prevalidated
    \TCPIP Performance Diagnostics\IPv6 NBLs/sec indicated without prevalidation
    \TCPIP Performance Diagnostics\IPv6 NBLs indicated without prevalidation
    \TCPIP Performance Diagnostics\IPv4 NBLs/sec indicated without prevalidation
    \TCPIP Performance Diagnostics\IPv4 NBLs indicated without prevalidation
    \TCPIP Performance Diagnostics\IPv6 NBLs/sec indicated with low-resource flag
    \TCPIP Performance Diagnostics\IPv6 NBLs indicated with low-resource flag
    \TCPIP Performance Diagnostics\IPv4 NBLs/sec indicated with low-resource flag
    \TCPIP Performance Diagnostics\IPv4 NBLs indicated with low-resource flag

TCPIP Performance Diagnostics (Per-CPU) (This counter set measures various per-CPU TCPIP activity for performance diagnostics.)

    \TCPIP Performance Diagnostics (Per-CPU)(*)\TCP current connections

TCPv4 (The TCP performance object consists of counters that measure the rates at which TCP Segments are sent and received by using the TCP protocol.  It includes counters that monitor the number of TCP connections in each TCP connection state.)

    \TCPv4\Segments/sec
    \TCPv4\Connections Established
    \TCPv4\Connections Active
    \TCPv4\Connections Passive
    \TCPv4\Connection Failures
    \TCPv4\Connections Reset
    \TCPv4\Segments Received/sec
    \TCPv4\Segments Sent/sec
    \TCPv4\Segments Retransmitted/sec

TCPv6 (The TCP performance object consists of counters that measure the rates at which TCP Segments are sent and received by using the TCP protocol.  It includes counters that monitor the number of TCP connections in each TCP connection state.)

    \TCPv6\Segments/sec
    \TCPv6\Connections Established
    \TCPv6\Connections Active
    \TCPv6\Connections Passive
    \TCPv6\Connection Failures
    \TCPv6\Connections Reset
    \TCPv6\Segments Received/sec
    \TCPv6\Segments Sent/sec
    \TCPv6\Segments Retransmitted/sec

Telephony (The Telephony System)

    \Telephony\Lines
    \Telephony\Telephone Devices
    \Telephony\Active Lines
    \Telephony\Active Telephones
    \Telephony\Outgoing Calls/sec
    \Telephony\Incoming Calls/sec
    \Telephony\Client Apps
    \Telephony\Current Outgoing Calls
    \Telephony\Current Incoming Calls

Teredo Client (Statistics of Teredo client.)

    \Teredo Client(*)\Out - Teredo Data Kernel Mode
    \Teredo Client(*)\Out - Teredo Data User Mode
    \Teredo Client(*)\In - Teredo Data Kernel Mode
    \Teredo Client(*)\In - Teredo Data User Mode
    \Teredo Client(*)\Out - Teredo Data
    \Teredo Client(*)\Out - Teredo Bubble
    \Teredo Client(*)\Out - Teredo Router Solicitation
    \Teredo Client(*)\In - Teredo Invalid
    \Teredo Client(*)\In - Teredo Data
    \Teredo Client(*)\In - Teredo Bubble
    \Teredo Client(*)\In - Teredo Router Advertisement

Teredo Relay (Statistics of Teredo relay hosted on this machine.)

    \Teredo Relay(*)\Out - Teredo Relay Success Packets: Data Packets Kernel Mode
    \Teredo Relay(*)\Out - Teredo Relay Success Packets: Data Packets User Mode
    \Teredo Relay(*)\In - Teredo Relay Success Packets: Data Packets Kernel Mode
    \Teredo Relay(*)\In - Teredo Relay Success Packets: Data Packets User Mode
    \Teredo Relay(*)\Out - Teredo Relay Total Packets: Success + Error / sec
    \Teredo Relay(*)\In - Teredo Relay Total Packets: Success + Error / sec
    \Teredo Relay(*)\Out - Teredo Relay Error Packets: Destination Error
    \Teredo Relay(*)\Out - Teredo Relay Error Packets: Source Error
    \Teredo Relay(*)\Out - Teredo Relay Error Packets: Header Error
    \Teredo Relay(*)\Out - Teredo Relay Error Packets
    \Teredo Relay(*)\Out - Teredo Relay Success Packets: Data Packets
    \Teredo Relay(*)\Out - Teredo Relay Success Packets: Bubbles
    \Teredo Relay(*)\Out - Teredo Relay Success Packets
    \Teredo Relay(*)\Out - Teredo Relay Total Packets: Success + Error
    \Teredo Relay(*)\In - Teredo Relay Error Packets: Destination Error
    \Teredo Relay(*)\In - Teredo Relay Error Packets: Source Error
    \Teredo Relay(*)\In - Teredo Relay Error Packets: Header Error
    \Teredo Relay(*)\In - Teredo Relay Error Packets: Total
    \Teredo Relay(*)\In - Teredo Relay Success Packets: Data Packets
    \Teredo Relay(*)\In - Teredo Relay Success Packets: Bubbles
    \Teredo Relay(*)\In - Teredo Relay Success Packets: Total
    \Teredo Relay(*)\In - Teredo Relay Total Packets: Success + Error

Teredo Server (Statistics of Teredo server hosted on this machine.)

    \Teredo Server(*)\In - Teredo Server Total Packets: Success + Error / sec
    \Teredo Server(*)\Out - Teredo Server: RA-Secondary 
    \Teredo Server(*)\Out - Teredo Server: RA-Primary
    \Teredo Server(*)\In - Teredo Server Error Packets: Authentication Error
    \Teredo Server(*)\In - Teredo Server Error Packets: Destination Error
    \Teredo Server(*)\In - Teredo Server Error Packets: Source Error
    \Teredo Server(*)\In - Teredo Server Error Packets: Header Error
    \Teredo Server(*)\In - Teredo Server Error Packets: Total
    \Teredo Server(*)\In - Teredo Server Success Packets: RS-Secondary
    \Teredo Server(*)\In - Teredo Server Success Packets: RS-Primary
    \Teredo Server(*)\In - Teredo Server Success Packets: Echo
    \Teredo Server(*)\In - Teredo Server Success Packets: Bubbles
    \Teredo Server(*)\In - Teredo Server Success Packets: Total
    \Teredo Server(*)\In - Teredo Server Total Packets: Success + Error

Terminal Services (Terminal Services Summary Information)

    \Terminal Services\Total Sessions
    \Terminal Services\Inactive Sessions
    \Terminal Services\Active Sessions

Terminal Services Session (Terminal Services per-session resource monitoring.)

    \Terminal Services Session(*)\% Processor Time
    \Terminal Services Session(*)\% User Time
    \Terminal Services Session(*)\% Privileged Time
    \Terminal Services Session(*)\Virtual Bytes Peak
    \Terminal Services Session(*)\Virtual Bytes
    \Terminal Services Session(*)\Page Faults/sec
    \Terminal Services Session(*)\Working Set Peak
    \Terminal Services Session(*)\Working Set
    \Terminal Services Session(*)\Page File Bytes Peak
    \Terminal Services Session(*)\Page File Bytes
    \Terminal Services Session(*)\Private Bytes
    \Terminal Services Session(*)\Thread Count
    \Terminal Services Session(*)\Pool Paged Bytes
    \Terminal Services Session(*)\Pool Nonpaged Bytes
    \Terminal Services Session(*)\Handle Count

Thermal Zone Information (The Thermal Zone Information performance counter set consists of counters that measure aspects of each thermal zone in the system.)

    \Thermal Zone Information(*)\High Precision Temperature
    \Thermal Zone Information(*)\Throttle Reasons
    \Thermal Zone Information(*)\% Passive Limit
    \Thermal Zone Information(*)\Temperature

Thread (The Thread performance object consists of counters that measure aspects of thread behavior.  A thread is the basic object that executes instructions on a processor.  All running processes have at least one thread.)

    \Thread(*)\Context Switches/sec
    \Thread(*)\% Processor Time
    \Thread(*)\% User Time
    \Thread(*)\% Privileged Time
    \Thread(*)\Elapsed Time
    \Thread(*)\Priority Current
    \Thread(*)\Priority Base
    \Thread(*)\Start Address
    \Thread(*)\Thread State
    \Thread(*)\Thread Wait Reason
    \Thread(*)\ID Process
    \Thread(*)\ID Thread

UDPv4 (The UDP performance object consists of counters that measure the rates at which UDP datagrams are sent and received by using the UDP protocol.  It includes counters that monitor UDP protocol errors.)

    \UDPv4\Datagrams/sec
    \UDPv4\Datagrams Received/sec
    \UDPv4\Datagrams No Port/sec
    \UDPv4\Datagrams Received Errors
    \UDPv4\Datagrams Sent/sec

UDPv6 (The UDP performance object consists of counters that measure the rates at which UDP datagrams are sent and received by using the UDP protocol.  It includes counters that monitor UDP protocol errors.)

    \UDPv6\Datagrams/sec
    \UDPv6\Datagrams Received/sec
    \UDPv6\Datagrams No Port/sec
    \UDPv6\Datagrams Received Errors
    \UDPv6\Datagrams Sent/sec

USB (USB I/O Counters)

    \USB(*)\Bulk Bytes/Sec
    \USB(*)\Isochronous Bytes/Sec
    \USB(*)\Interrupt Bytes/Sec
    \USB(*)\Control Data Bytes/Sec
    \USB(*)\Controller PCI Interrupts/Sec
    \USB(*)\Controller WorkSignals/Sec
    \USB(*)\% Total Bandwidth Used for Interrupt
    \USB(*)\% Total Bandwidth Used for Iso
    \USB(*)\Avg. Bytes/Transfer
    \USB(*)\Iso Packet Errors/Sec
    \USB(*)\Avg ms latency for ISO transfers
    \USB(*)\Transfer Errors/Sec
    \USB(*)\Host Controller Idle
    \USB(*)\Host Controller Async Idle
    \USB(*)\Host Controller Async Cache Flush Count
    \USB(*)\Host Controller Periodic Idle
    \USB(*)\Host Controller Periodic Cache Flush Count

VFP Port Average Inbound Network Traffic (The Virtual Filtering Platform (VFP) Port Average Inbound Network Traffic counter set tracks the average inbound network traffic of a port.)

    \VFP Port Average Inbound Network Traffic(*)\Average Inbound GFT Total Bytes
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound GFT Total Packets
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound GFT Exception UF Offload Retry Awaiting Packets
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound GFT Exception UF Offloaded UDP Packets
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound GFT Exception UF Offload Blocked Packets
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound GFT Exception UF Offload Deferred Packets
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound GFT Copy FIN Packets
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound GFT Copy Reset Packets
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound GFT Copy Packets
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound Unicast Forwarded GFT Exception Packets
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound GFT Exception UF Offload Failed Packets
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound GFT Exception UF Offload Pending Packets
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound GFT Exception UF Offloaded TCP Packets
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound GFT Exception UF Packets
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound GFT Exception Packets
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound Hair-Pinned Packets
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound Forwarded Multicast Packets
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound Forwarded Unicast Packets
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound Throttled Packets
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound Missed Intercepted Packets
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound Intercepted Packets
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound Non-IP Packets
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound Bytes
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound TCP SYN ACK Packets
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound TCP SYN Packets
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound Pending Packets
    \VFP Port Average Inbound Network Traffic(*)\Average Inbound Packets

VFP Port Average Outbound Network Traffic (The Virtual Filtering Platform (VFP) Port Average Outbound Network Traffic counter set tracks the average outbound network traffic of a port.)

    \VFP Port Average Outbound Network Traffic(*)\Average GFT Outbound Bytes
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound GFT Packets
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound GFT Exception UF Offload Retry Awaiting Packets
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound GFT Exception UF Offloaded UDP Packets
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound GFT Exception UF Offload Blocked Packets
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound GFT Exception UF Offload Deferred Packets
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound GFT Copy FIN Packets
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound GFT Copy Reset Packets
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound GFT Copy Packets
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound Unicast Forwarded GFT Exception Packets
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound GFT Exception UF Offload Failed Packets
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound GFT Exception UF Offload Pending Packets
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound GFT Exception UF Offloaded TCP Packets
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound GFT Exception UF Packets
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound GFT Exception Packets
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound Hairpinned Packets
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound Forwarded Multicast Packets
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound Forwarded Unicast Packets
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound Throttled Packets
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound Missed Intercepted Packets
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound Intercepted Packets
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound Non-IP Packets
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound Bytes
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound TCP SYN ACK Packets
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound TCP SYN Packets
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound Pending Packets
    \VFP Port Average Outbound Network Traffic(*)\Average Outbound Packets

VFP Port Total Inbound Dropped Network Packets (The Virtual Filtering Platform (VFP) Port Total Inbound Dropped Network Packets counter set tracks the total inbound dropped network packets of a port.)

    \VFP Port Total Inbound Dropped Network Packets(*)\Total Inbound Dropped Monitoring Ping Packets
    \VFP Port Total Inbound Dropped Network Packets(*)\Total Inbound Dropped GFT Copy Packets
    \VFP Port Total Inbound Dropped Network Packets(*)\Total Inbound Dropped GFT Exception Packets
    \VFP Port Total Inbound Dropped Network Packets(*)\Total Inbound Dropped MAC Spoofing Packets
    \VFP Port Total Inbound Dropped Network Packets(*)\Total Inbound Dropped Forwarding Packets
    \VFP Port Total Inbound Dropped Network Packets(*)\Total Inbound Dropped Invalid Rule Match Packets
    \VFP Port Total Inbound Dropped Network Packets(*)\Total Inbound Dropped Malformed Packets
    \VFP Port Total Inbound Dropped Network Packets(*)\Total Inbound Dropped ACL Packets
    \VFP Port Total Inbound Dropped Network Packets(*)\Total Inbound Dropped Simulation Packets
    \VFP Port Total Inbound Dropped Network Packets(*)\Total Inbound Dropped No-Resource Packets
    \VFP Port Total Inbound Dropped Network Packets(*)\Total Inbound Dropped Pending Packets
    \VFP Port Total Inbound Dropped Network Packets(*)\Total Inbound Dropped Blocked Packets
    \VFP Port Total Inbound Dropped Network Packets(*)\Total Inbound Dropped IPV6 Spoofing Packets
    \VFP Port Total Inbound Dropped Network Packets(*)\Total Inbound Dropped IPV4 Spoofing Packets
    \VFP Port Total Inbound Dropped Network Packets(*)\Total Inbound Dropped ARP-Filter Packets
    \VFP Port Total Inbound Dropped Network Packets(*)\Total Inbound Dropped ARP-Limiter Packets
    \VFP Port Total Inbound Dropped Network Packets(*)\Total Inbound Dropped Invalid Packets
    \VFP Port Total Inbound Dropped Network Packets(*)\Total Inbound Dropped Broadcast Packets
    \VFP Port Total Inbound Dropped Network Packets(*)\Total Inbound Dropped DHCP-Limiter Packets
    \VFP Port Total Inbound Dropped Network Packets(*)\Total Inbound Dropped DHCP-Guard Packets
    \VFP Port Total Inbound Dropped Network Packets(*)\Total Inbound Dropped ARP-Guard Packets
    \VFP Port Total Inbound Dropped Network Packets(*)\Total Inbound Dropped Non-IP Packets
    \VFP Port Total Inbound Dropped Network Packets(*)\Total Inbound Dropped Packets

VFP Port Total Inbound Network Traffic (The Virtual Filtering Platform (VFP) Port Total Inbound Network Traffic counter set tracks the total inbound network traffic of a port.)

    \VFP Port Total Inbound Network Traffic(*)\Total Inbound GFT Bytes
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound GFT Packets
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound GFT Exception UF Retry Awaiting Packets
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound GFT Exception UF Offloaded UDP Packets
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound GFT Exception UF Offload Blocked Packets
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound GFT Exception UF Offload Deferred Packets
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound GFT Copy FIN Packets
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound GFT Copy Reset Packets
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound GFT Copy Packets
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound Unicast Forwarded GFT Exception Packets
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound GFT Exception UF Offload Failed Packets
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound GFT Exception UF Offload Pending Packets
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound GFT Exception UF Offloaded TCP Packets
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound GFT Exception UF Packets
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound GFT Exception Packets
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound Hairpinned Packets
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound Forwarded Multicast Packets
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound Forwarded Unicast Packets
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound Throttled Packets
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound Missed Intercepted Packets
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound Intercepted Packets
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound Non-IP Packets
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound Bytes
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound TCP SYN ACK Packets
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound TCP SYN Packets
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound Pending Packets
    \VFP Port Total Inbound Network Traffic(*)\Total Inbound Packets

VFP Port Total Outbound Dropped Network Packets (The Virtual Filtering Platform (VFP) Port Total Outbound Dropped Network Packets counter set tracks the total outbound dropped network packets for a port.)

    \VFP Port Total Outbound Dropped Network Packets(*)\Total Outbound Dropped Monitoring Ping Packets
    \VFP Port Total Outbound Dropped Network Packets(*)\Total Outbound Dropped GFT Copy Packets
    \VFP Port Total Outbound Dropped Network Packets(*)\Total Outbound Dropped GFT Exception Packets
    \VFP Port Total Outbound Dropped Network Packets(*)\Total Outbound Dropped MAC Spoofing Packets
    \VFP Port Total Outbound Dropped Network Packets(*)\Total Outbound Dropped Forwarding Packets
    \VFP Port Total Outbound Dropped Network Packets(*)\Total Outbound Dropped Invalid Rule Match Packets
    \VFP Port Total Outbound Dropped Network Packets(*)\Total Outbound Dropped Malformed Packets
    \VFP Port Total Outbound Dropped Network Packets(*)\Total Outbound Dropped ACL Packets
    \VFP Port Total Outbound Dropped Network Packets(*)\Total Outbound Dropped Simulation Packets
    \VFP Port Total Outbound Dropped Network Packets(*)\Total Outbound Dropped No-Resource Packets
    \VFP Port Total Outbound Dropped Network Packets(*)\Total Outbound Dropped Pending Packets
    \VFP Port Total Outbound Dropped Network Packets(*)\Total Outbound Dropped Blocked Packets
    \VFP Port Total Outbound Dropped Network Packets(*)\Total Outbound Dropped IPV6 Spoofing Packets
    \VFP Port Total Outbound Dropped Network Packets(*)\Total Outbound Dropped IPV4 Spoofing Packets
    \VFP Port Total Outbound Dropped Network Packets(*)\Total Outbound Dropped ARP-Filter Packets
    \VFP Port Total Outbound Dropped Network Packets(*)\Total Outbound Dropped ARP-Limiter Packets
    \VFP Port Total Outbound Dropped Network Packets(*)\Total Outbound Dropped Invalid Packets
    \VFP Port Total Outbound Dropped Network Packets(*)\Total Outbound Dropped Broadcast Packets
    \VFP Port Total Outbound Dropped Network Packets(*)\Total Outbound Dropped DHCP-Limiter Packets
    \VFP Port Total Outbound Dropped Network Packets(*)\Total Outbound Dropped DHCP-Guard Packets
    \VFP Port Total Outbound Dropped Network Packets(*)\Total Outbound Dropped ARP-Guard Packets
    \VFP Port Total Outbound Dropped Network Packets(*)\Total Outbound Dropped Non-IP Packets
    \VFP Port Total Outbound Dropped Network Packets(*)\Total Outbound Dropped Packets

VFP Port Total Outbound Network Traffic (The Virtual Filtering Platform (VFP) Port Total Outbound Network Traffic counter set tracks the total outbound network traffic of a port.)

    \VFP Port Total Outbound Network Traffic(*)\Total Outbound GFT Bytes
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound GftTotalPackets
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound GFT Retry Awaiting Packets
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound GFT Exception UF Offloaded UDP Packets
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound GFT Exception UF Offload Blocked Packets
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound GFT Exception UF Offload Deferred Packets
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound GFT Copy FIN Packets
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound GFT Copy Reset Packets
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound GFT Copy Packets
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound Unicast Forwarded GFT Exception Packets
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound GFT Exception UF Offload Failed Packets
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound GFT Exception UF Offload Pending Packets
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound GFT Exception UF Offloaded TCP Packets
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound GFT Exception UF Packets
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound GFT Exception Packets
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound Hair-Pinned Packets
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound Forwarded Multicast Packets
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound Forwarded Unicast Packets
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound Throttled Packets
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound Missed Intercepted Packets
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound Intercepted Packets
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound Non-IP Packets
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound Bytes
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound TCP SYN ACK Packets
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound TCP SYN Packets
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound Pending Packets
    \VFP Port Total Outbound Network Traffic(*)\Total Outbound Packets

VFP QoS Queue Average Inbound Network Traffic (The Virtual Filtering Platform (VFP) QoS Queue Average Inbound Network Traffic counter set tracks the average network traffic through an inbound QoS Queue.)

    \VFP QoS Queue Average Inbound Network Traffic(*)\Average Inbound Packets Resumed
    \VFP QoS Queue Average Inbound Network Traffic(*)\Average Inbound Bytes Resumed
    \VFP QoS Queue Average Inbound Network Traffic(*)\Average Inbound Packets Queued due to Insufficient Tokens
    \VFP QoS Queue Average Inbound Network Traffic(*)\Average Inbound Bytes Queued due to Insufficient Tokens
    \VFP QoS Queue Average Inbound Network Traffic(*)\Average Inbound Packets Queued due to Backlog
    \VFP QoS Queue Average Inbound Network Traffic(*)\Average Inbound Bytes Queued due to Backlog
    \VFP QoS Queue Average Inbound Network Traffic(*)\Average Inbound Packets Dropped
    \VFP QoS Queue Average Inbound Network Traffic(*)\Average Inbound Bytes Dropped
    \VFP QoS Queue Average Inbound Network Traffic(*)\Average Inbound Packets Allowed Through the Queue
    \VFP QoS Queue Average Inbound Network Traffic(*)\Average Inbound Bytes Allowed Through the Queue
    \VFP QoS Queue Average Inbound Network Traffic(*)\Average Inbound Packets Entering the Queue
    \VFP QoS Queue Average Inbound Network Traffic(*)\Average Inbound Bytes Entering the Queue

VFP QoS Queue Average Outbound Network Traffic (The Virtual Filtering Platform (VFP) QoS Queue Average Outbound Network Traffic counter set tracks the average network traffic through an outbound QoS Queue.)

    \VFP QoS Queue Average Outbound Network Traffic(*)\Average Outbound Packets Resumed
    \VFP QoS Queue Average Outbound Network Traffic(*)\Average Outbound Bytes Resumed
    \VFP QoS Queue Average Outbound Network Traffic(*)\Average Outbound Packets Queued due to Insufficient Tokens
    \VFP QoS Queue Average Outbound Network Traffic(*)\Average Outbound Bytes Queued due to Insufficient Tokens
    \VFP QoS Queue Average Outbound Network Traffic(*)\Average Outbound Packets Queued due to Backlog
    \VFP QoS Queue Average Outbound Network Traffic(*)\Average Outbound Bytes Queued due to Backlog
    \VFP QoS Queue Average Outbound Network Traffic(*)\Average Outbound Packets Dropped
    \VFP QoS Queue Average Outbound Network Traffic(*)\Average Outbound Bytes Dropped
    \VFP QoS Queue Average Outbound Network Traffic(*)\Average Outbound Packets Allowed Through the Queue
    \VFP QoS Queue Average Outbound Network Traffic(*)\Average Outbound Bytes Allowed Through the Queue
    \VFP QoS Queue Average Outbound Network Traffic(*)\Average Outbound Packets Entering the Queue
    \VFP QoS Queue Average Outbound Network Traffic(*)\Average Outbound Bytes Entering the Queue

VFP QoS Queue Total Inbound Network Traffic (The Virtual Filtering Platform (VFP) QoS Queue Total Inbound Network Traffic counter set tracks the total network traffic through an inbound QoS Queue.)

    \VFP QoS Queue Total Inbound Network Traffic(*)\Total Inbound Packets Dropped
    \VFP QoS Queue Total Inbound Network Traffic(*)\Total Inbound Bytes Dropped

VFP QoS Queue Total Outbound Network Traffic (The Virtual Filtering Platform (VFP) QoS Queue Total Outbound Network Traffic counter set tracks the total network traffic through an outbound QoS Queue.)

    \VFP QoS Queue Total Outbound Network Traffic(*)\Total Outbound Packets Dropped
    \VFP QoS Queue Total Outbound Network Traffic(*)\Total Outbound Bytes Dropped

WF (System.Workflow) 4.0.0.0 (Windows Workflow Foundation Performance Counters)

    \WF (System.Workflow) 4.0.0.0(*)\Workflows Created
    \WF (System.Workflow) 4.0.0.0(*)\Workflows Created/sec
    \WF (System.Workflow) 4.0.0.0(*)\Workflows Unloaded
    \WF (System.Workflow) 4.0.0.0(*)\Workflows Unloaded/sec
    \WF (System.Workflow) 4.0.0.0(*)\Workflows Loaded
    \WF (System.Workflow) 4.0.0.0(*)\Workflows Loaded/sec
    \WF (System.Workflow) 4.0.0.0(*)\Workflows Completed
    \WF (System.Workflow) 4.0.0.0(*)\Workflows Completed/sec
    \WF (System.Workflow) 4.0.0.0(*)\Workflows Suspended
    \WF (System.Workflow) 4.0.0.0(*)\Workflows Suspended/sec
    \WF (System.Workflow) 4.0.0.0(*)\Workflows Terminated
    \WF (System.Workflow) 4.0.0.0(*)\Workflows Terminated/sec
    \WF (System.Workflow) 4.0.0.0(*)\Workflows In Memory
    \WF (System.Workflow) 4.0.0.0(*)\Workflows Aborted
    \WF (System.Workflow) 4.0.0.0(*)\Workflows Aborted/sec
    \WF (System.Workflow) 4.0.0.0(*)\Workflows Persisted
    \WF (System.Workflow) 4.0.0.0(*)\Workflows Persisted/sec
    \WF (System.Workflow) 4.0.0.0(*)\Workflows Executing
    \WF (System.Workflow) 4.0.0.0(*)\Workflows Idle/sec
    \WF (System.Workflow) 4.0.0.0(*)\Workflows Runnable
    \WF (System.Workflow) 4.0.0.0(*)\Workflows Pending

WFP (WFP is the set of Windows Filtering Platform counters that do not apply to any specific Internet Protocol version.)

    \WFP\Provider Count

WFP Classify (WFP Classify is the set of Windows Filtering Platform (WFP) counters that pertain to classifation calls.)

    \WFP Classify\FWPM_LAYER_KM_AUTHORIZATION
    \WFP Classify\FWPM_LAYER_RPC_PROXY_IF
    \WFP Classify\FWPM_LAYER_RPC_PROXY_CONN
    \WFP Classify\FWPM_LAYER_RPC_EP_ADD
    \WFP Classify\FWPM_LAYER_RPC_EPMAP
    \WFP Classify\FWPM_LAYER_RPC_UM
    \WFP Classify\FWPM_LAYER_IKEEXT_V6
    \WFP Classify\FWPM_LAYER_IKEEXT_V4
    \WFP Classify\FWPM_LAYER_IPSEC_V6
    \WFP Classify\FWPM_LAYER_IPSEC_V4
    \WFP Classify\FWPM_LAYER_IPSEC_KM_DEMUX_V6
    \WFP Classify\FWPM_LAYER_IPSEC_KM_DEMUX_V4
    \WFP Classify\FWPM_LAYER_INBOUND_SSL_THROTTLING
    \WFP Classify\FWPM_LAYER_ALE_PRECLASSIFY_IP_REMOTE_PORT_V6
    \WFP Classify\FWPM_LAYER_ALE_PRECLASSIFY_IP_LOCAL_PORT_V6
    \WFP Classify\FWPM_LAYER_ALE_PRECLASSIFY_IP_REMOTE_ADDRESS_V6
    \WFP Classify\FWPM_LAYER_ALE_PRECLASSIFY_IP_LOCAL_ADDRESS_V6
    \WFP Classify\FWPM_LAYER_ALE_PRECLASSIFY_IP_REMOTE_PORT_V4
    \WFP Classify\FWPM_LAYER_ALE_PRECLASSIFY_IP_LOCAL_PORT_V4
    \WFP Classify\FWPM_LAYER_ALE_PRECLASSIFY_IP_REMOTE_ADDRESS_V4
    \WFP Classify\FWPM_LAYER_ALE_PRECLASSIFY_IP_LOCAL_ADDRESS_V4
    \WFP Classify\FWPM_LAYER_OUTBOUND_MAC_FRAME_NATIVE_FAST
    \WFP Classify\FWPM_LAYER_INBOUND_MAC_FRAME_NATIVE_FAST
    \WFP Classify\FWPM_LAYER_OUTBOUND_TRANSPORT_FAST
    \WFP Classify\FWPM_LAYER_INBOUND_TRANSPORT_FAST
    \WFP Classify\FWPM_LAYER_EGRESS_VSWITCH_TRANSPORT_V6
    \WFP Classify\FWPM_LAYER_EGRESS_VSWITCH_TRANSPORT_V4
    \WFP Classify\FWPM_LAYER_INGRESS_VSWITCH_TRANSPORT_V6
    \WFP Classify\FWPM_LAYER_INGRESS_VSWITCH_TRANSPORT_V4
    \WFP Classify\FWPM_LAYER_EGRESS_VSWITCH_ETHERNET
    \WFP Classify\FWPM_LAYER_INGRESS_VSWITCH_ETHERNET
    \WFP Classify\FWPM_LAYER_STREAM_PACKET_V6
    \WFP Classify\FWPM_LAYER_STREAM_PACKET_V4
    \WFP Classify\FWPM_LAYER_ALE_BIND_REDIRECT_V6
    \WFP Classify\FWPM_LAYER_ALE_BIND_REDIRECT_V4
    \WFP Classify\FWPM_LAYER_ALE_CONNECT_REDIRECT_V6
    \WFP Classify\FWPM_LAYER_ALE_CONNECT_REDIRECT_V4
    \WFP Classify\FWPM_LAYER_ALE_ENDPOINT_CLOSURE_V6
    \WFP Classify\FWPM_LAYER_ALE_ENDPOINT_CLOSURE_V4
    \WFP Classify\FWPM_LAYER_ALE_RESOURCE_RELEASE_V6
    \WFP Classify\FWPM_LAYER_ALE_RESOURCE_RELEASE_V4
    \WFP Classify\FWPM_LAYER_NAME_RESOLUTION_CACHE_V6
    \WFP Classify\FWPM_LAYER_NAME_RESOLUTION_CACHE_V4
    \WFP Classify\FWPM_LAYER_OUTBOUND_MAC_FRAME_NATIVE
    \WFP Classify\FWPM_LAYER_INBOUND_MAC_FRAME_NATIVE
    \WFP Classify\FWPM_LAYER_OUTBOUND_MAC_FRAME_ETHERNET
    \WFP Classify\FWPM_LAYER_INBOUND_MAC_FRAME_ETHERNET
    \WFP Classify\FWPM_LAYER_ALE_FLOW_ESTABLISHED_V6_DISCARD
    \WFP Classify\FWPM_LAYER_ALE_FLOW_ESTABLISHED_V6
    \WFP Classify\FWPM_LAYER_ALE_FLOW_ESTABLISHED_V4_DISCARD
    \WFP Classify\FWPM_LAYER_ALE_FLOW_ESTABLISHED_V4
    \WFP Classify\FWPM_LAYER_ALE_AUTH_CONNECT_V6_DISCARD
    \WFP Classify\FWPM_LAYER_ALE_AUTH_CONNECT_V6
    \WFP Classify\FWPM_LAYER_ALE_AUTH_CONNECT_V4_DISCARD
    \WFP Classify\FWPM_LAYER_ALE_AUTH_CONNECT_V4
    \WFP Classify\FWPM_LAYER_ALE_AUTH_RECV_ACCEPT_V6_DISCARD
    \WFP Classify\FWPM_LAYER_ALE_AUTH_RECV_ACCEPT_V6
    \WFP Classify\FWPM_LAYER_ALE_AUTH_RECV_ACCEPT_V4_DISCARD
    \WFP Classify\FWPM_LAYER_ALE_AUTH_RECV_ACCEPT_V4
    \WFP Classify\FWPM_LAYER_ALE_AUTH_LISTEN_V6_DISCARD
    \WFP Classify\FWPM_LAYER_ALE_AUTH_LISTEN_V6
    \WFP Classify\FWPM_LAYER_ALE_AUTH_LISTEN_V4_DISCARD
    \WFP Classify\FWPM_LAYER_ALE_AUTH_LISTEN_V4
    \WFP Classify\FWPM_LAYER_ALE_RESOURCE_ASSIGNMENT_V6_DISCARD
    \WFP Classify\FWPM_LAYER_ALE_RESOURCE_ASSIGNMENT_V6
    \WFP Classify\FWPM_LAYER_ALE_RESOURCE_ASSIGNMENT_V4_DISCARD
    \WFP Classify\FWPM_LAYER_ALE_RESOURCE_ASSIGNMENT_V4
    \WFP Classify\FWPM_LAYER_OUTBOUND_ICMP_ERROR_V6_DISCARD
    \WFP Classify\FWPM_LAYER_OUTBOUND_ICMP_ERROR_V6
    \WFP Classify\FWPM_LAYER_OUTBOUND_ICMP_ERROR_V4_DISCARD
    \WFP Classify\FWPM_LAYER_OUTBOUND_ICMP_ERROR_V4
    \WFP Classify\FWPM_LAYER_INBOUND_ICMP_ERROR_V6_DISCARD
    \WFP Classify\FWPM_LAYER_INBOUND_ICMP_ERROR_V6
    \WFP Classify\FWPM_LAYER_INBOUND_ICMP_ERROR_V4_DISCARD
    \WFP Classify\FWPM_LAYER_INBOUND_ICMP_ERROR_V4
    \WFP Classify\FWPM_LAYER_DATAGRAM_DATA_V6_DISCARD
    \WFP Classify\FWPM_LAYER_DATAGRAM_DATA_V6
    \WFP Classify\FWPM_LAYER_DATAGRAM_DATA_V4_DISCARD
    \WFP Classify\FWPM_LAYER_DATAGRAM_DATA_V4
    \WFP Classify\FWPM_LAYER_STREAM_V6_DISCARD
    \WFP Classify\FWPM_LAYER_STREAM_V6
    \WFP Classify\FWPM_LAYER_STREAM_V4_DISCARD
    \WFP Classify\FWPM_LAYER_STREAM_V4
    \WFP Classify\FWPM_LAYER_OUTBOUND_TRANSPORT_V6_DISCARD
    \WFP Classify\FWPM_LAYER_OUTBOUND_TRANSPORT_V6
    \WFP Classify\FWPM_LAYER_OUTBOUND_TRANSPORT_V4_DISCARD
    \WFP Classify\FWPM_LAYER_OUTBOUND_TRANSPORT_V4
    \WFP Classify\FWPM_LAYER_INBOUND_TRANSPORT_V6_DISCARD
    \WFP Classify\FWPM_LAYER_INBOUND_TRANSPORT_V6
    \WFP Classify\FWPM_LAYER_INBOUND_TRANSPORT_V4_DISCARD
    \WFP Classify\FWPM_LAYER_INBOUND_TRANSPORT_V4
    \WFP Classify\FWPM_LAYER_IPFORWARD_V6_DISCARD
    \WFP Classify\FWPM_LAYER_IPFORWARD_V6
    \WFP Classify\FWPM_LAYER_IPFORWARD_V4_DISCARD
    \WFP Classify\FWPM_LAYER_IPFORWARD_V4
    \WFP Classify\FWPM_LAYER_OUTBOUND_IPPACKET_V6_DISCARD
    \WFP Classify\FWPM_LAYER_OUTBOUND_IPPACKET_V6
    \WFP Classify\FWPM_LAYER_OUTBOUND_IPPACKET_V4_DISCARD
    \WFP Classify\FWPM_LAYER_OUTBOUND_IPPACKET_V4
    \WFP Classify\FWPM_LAYER_INBOUND_IPPACKET_V6_DISCARD
    \WFP Classify\FWPM_LAYER_INBOUND_IPPACKET_V6
    \WFP Classify\FWPM_LAYER_INBOUND_IPPACKET_V4_DISCARD
    \WFP Classify\FWPM_LAYER_INBOUND_IPPACKET_V4
    \WFP Classify\Total

WFP Reauthorization (WFP Reauthorization is the set of Windows Filtering Platform (WFP) counters that pertain to connection reauthorizations.)

    \WFP Reauthorization\Reason: ProxyHandleChanged
    \WFP Reauthorization\Reason: PreclassifyRemotePortDimensionPolicyChanged
    \WFP Reauthorization\Reason: PreclassifyLocalPortDimensionPolicyChanged
    \WFP Reauthorization\Reason: PreclassifyRemoteAddressDimensionPolicyChanged
    \WFP Reauthorization\Reason: PreclassifyLocalAddressDimensionPolicyChanged
    \WFP Reauthorization\Reason: EDPPolicyChanged
    \WFP Reauthorization\Reason: NewInboundMCastBCastPacket
    \WFP Reauthorization\Reason: SocketPropertyChanged
    \WFP Reauthorization\Reason: MidStreamInspection
    \WFP Reauthorization\Reason: IPSecPropertiesChanged
    \WFP Reauthorization\Reason: ClassifyCompletion
    \WFP Reauthorization\Reason: ProfileCrossing
    \WFP Reauthorization\Reason: NewNextHopInterface
    \WFP Reauthorization\Reason: NewArrivalInterface
    \WFP Reauthorization\Reason: PolicyChange
    \WFP Reauthorization\Protocol: TCP
    \WFP Reauthorization\Protocol: UDP
    \WFP Reauthorization\Protocol: ICMP6
    \WFP Reauthorization\Protocol: ICMP
    \WFP Reauthorization\Protocol: IPv6
    \WFP Reauthorization\Protocol: IPv4
    \WFP Reauthorization\Protocol: Other
    \WFP Reauthorization\Family: V6
    \WFP Reauthorization\Family: V4
    \WFP Reauthorization\Outbound
    \WFP Reauthorization\Inbound

WFPv4 (WFPv4 is the set of Windows Filtering Platform counters that apply to traffic and connections over Internet Protocol version 4.)

    \WFPv4\Allowed Classifies/sec
    \WFPv4\Active Outbound Connections
    \WFPv4\Active Inbound Connections
    \WFPv4\Outbound Connections
    \WFPv4\Inbound Connections
    \WFPv4\Outbound Connections Allowed/sec
    \WFPv4\Inbound Connections Allowed/sec
    \WFPv4\Outbound Connections Blocked/sec
    \WFPv4\Inbound Connections Blocked/sec
    \WFPv4\Blocked Binds
    \WFPv4\Packets Discarded/sec
    \WFPv4\Outbound Packets Discarded/sec
    \WFPv4\Inbound Packets Discarded/sec

WFPv6 (WFPv6 is the set of Windows Filtering Platform counters that apply to traffic and connections over Internet Protocol version 6.)

    \WFPv6\Allowed Classifies/sec
    \WFPv6\Active Outbound Connections
    \WFPv6\Active Inbound Connections
    \WFPv6\Outbound Connections
    \WFPv6\Inbound Connections
    \WFPv6\Outbound Connections Allowed/sec
    \WFPv6\Inbound Connections Allowed/sec
    \WFPv6\Outbound Connections Blocked/sec
    \WFPv6\Inbound Connections Blocked/sec
    \WFPv6\Blocked Binds
    \WFPv6\Packets Discarded/sec
    \WFPv6\Outbound Packets Discarded/sec
    \WFPv6\Inbound Packets Discarded/sec

Windows Media Player Metadata (Windows Media Player Metadata)

    \Windows Media Player Metadata(*)\Normalization Time (ms)
    \Windows Media Player Metadata(*)\Commit Time (ms)
    \Windows Media Player Metadata(*)\Reorganize Time (ms)
    \Windows Media Player Metadata(*)\Art Extraction Time (ms)
    \Windows Media Player Metadata(*)\Property Extraction Time (ms)
    \Windows Media Player Metadata(*)\URL Classification Time (ms)
    \Windows Media Player Metadata(*)\AFTS Execution Time (ms)
    \Windows Media Player Metadata(*)\Timestamp Directory Hit Count
    \Windows Media Player Metadata(*)\Dirty Directory Hit Count
    \Windows Media Player Metadata(*)\Scanning State
    \Windows Media Player Metadata(*)\Directory Change Queue Length
    \Windows Media Player Metadata(*)\File Scanning Thread Prioirty
    \Windows Media Player Metadata(*)\Library Description Change Notifications/Second
    \Windows Media Player Metadata(*)\Library Description Updates/Second
    \Windows Media Player Metadata(*)\Groveler Service Routine Executions/Second
    \Windows Media Player Metadata(*)\Monitored Folder Updates/Second
    \Windows Media Player Metadata(*)\Files Scanned/Minute

Windows Time Service (Windows Time Service Performance Counters display the time synchronization runtime information from the service. Note that the service has to be running in order for this information to be displayed.)

    \Windows Time Service\NTP Server Outgoing Responses
    \Windows Time Service\NTP Server Incoming Requests
    \Windows Time Service\NTP Client Time Source Count
    \Windows Time Service\NTP Roundtrip Delay
    \Windows Time Service\Clock Frequency Adjustment (PPB)
    \Windows Time Service\Clock Frequency Adjustment
    \Windows Time Service\Computed Time Offset

WinNAT (WinNAT general counter set measures network activity for all network address translated packets.)

    \WinNAT\Intra-RoutingDomain Hairpinned Packets
    \WinNAT\Intra-RoutingDomain Hairpinned Packets/sec
    \WinNAT\Inter-RoutingDomain Hairpinned Packets
    \WinNAT\Inter-RoutingDomain Hairpinned Packets/sec
    \WinNAT\Dropped ICMP error packets
    \WinNAT\Dropped ICMP error packets/sec
    \WinNAT\Dropped Packets
    \WinNAT\Dropped Packets/sec
    \WinNAT\Packets External to Internal
    \WinNAT\Packets/sec External to Internal
    \WinNAT\Packets Internal to External
    \WinNAT\Packets/sec Internal to External
    \WinNAT\Current Session Count
    \WinNAT\Sessions/sec

WinNAT ICMP (WinNat ICMP counter set measures network activity for network address translated ICMP packets.)

    \WinNAT ICMP\NumSessionsTimedOut
    \WinNAT ICMP\NumPacketsDropped
    \WinNAT ICMP\NumExtToIntTranslations
    \WinNAT ICMP\NumIntToExtTranslations
    \WinNAT ICMP\NumberOfBindings
    \WinNAT ICMP\NumberOfSessions

WinNAT Instance (WinNAT instance counterset provides resource usage information per NAT instance.)

    \WinNAT Instance(*)\UDP Ports Available
    \WinNAT Instance(*)\UDP Ports In Use
    \WinNAT Instance(*)\TCP Ports Available
    \WinNAT Instance(*)\TCP Ports In Use

WinNAT TCP (WinNat TCP counter set measures network activity for network address translated TCP packets.)

    \WinNAT TCP\NumSessionsTimedOut
    \WinNAT TCP\NumPacketsDropped
    \WinNAT TCP\NumExtToIntTranslations
    \WinNAT TCP\NumIntToExtTranslations
    \WinNAT TCP\NumberOfBindings
    \WinNAT TCP\NumberOfSessions

WinNAT UDP (WinNat UDP counter set measures network activity for network address translated UDP packets.)

    \WinNAT UDP\NumSessionsTimedOut
    \WinNAT UDP\NumPacketsDropped
    \WinNAT UDP\NumExtToIntTranslations
    \WinNAT UDP\NumIntToExtTranslations
    \WinNAT UDP\NumberOfBindings
    \WinNAT UDP\NumberOfSessions

WorkflowServiceHost 4.0.0.0 (WorkflowServiceHost performance counters for workflow service)

    \WorkflowServiceHost 4.0.0.0(*)\Average Workflow Persist Time
    \WorkflowServiceHost 4.0.0.0(*)\Average Workflow Load Time
    \WorkflowServiceHost 4.0.0.0(*)\Workflows Idle Per Second
    \WorkflowServiceHost 4.0.0.0(*)\Workflows Suspended Per Second
    \WorkflowServiceHost 4.0.0.0(*)\Workflows Suspended
    \WorkflowServiceHost 4.0.0.0(*)\Workflows Unloaded Per Second
    \WorkflowServiceHost 4.0.0.0(*)\Workflows Unloaded
    \WorkflowServiceHost 4.0.0.0(*)\Workflows Loaded Per Second
    \WorkflowServiceHost 4.0.0.0(*)\Workflows Loaded
    \WorkflowServiceHost 4.0.0.0(*)\Workflows Terminated Per Second
    \WorkflowServiceHost 4.0.0.0(*)\Workflows Terminated
    \WorkflowServiceHost 4.0.0.0(*)\Workflows Persisted Per Second
    \WorkflowServiceHost 4.0.0.0(*)\Workflows Persisted
    \WorkflowServiceHost 4.0.0.0(*)\Workflows In Memory
    \WorkflowServiceHost 4.0.0.0(*)\Workflows Aborted Per Second
    \WorkflowServiceHost 4.0.0.0(*)\Workflows Aborted
    \WorkflowServiceHost 4.0.0.0(*)\Workflows Completed Per Second
    \WorkflowServiceHost 4.0.0.0(*)\Workflows Completed
    \WorkflowServiceHost 4.0.0.0(*)\Workflows Executing
    \WorkflowServiceHost 4.0.0.0(*)\Workflows Created Per Second
    \WorkflowServiceHost 4.0.0.0(*)\Workflows Created

WSMan Quota Statistics (Displays quota usage and violation information for WS-Management processes.)

    \WSMan Quota Statistics(*)\Process ID
    \WSMan Quota Statistics(*)\Active Users
    \WSMan Quota Statistics(*)\Active Operations
    \WSMan Quota Statistics(*)\Active Shells
    \WSMan Quota Statistics(*)\System Quota Violations/Second
    \WSMan Quota Statistics(*)\User Quota Violations/Second
    \WSMan Quota Statistics(*)\Total Requests/Second

XHCI CommonBuffer (Consists of counters that measure aspects of a CommonBuffer object of an xHCI controller.)

    \XHCI CommonBuffer(*)\FreeCount
    \XHCI CommonBuffer(*)\AllocationCount
    \XHCI CommonBuffer(*)\PagesInUse
    \XHCI CommonBuffer(*)\PagesTotal

XHCI Interrupter (Consists of counters that measure aspects of an interrupter of an xHCI controller.)

    \XHCI Interrupter(*)\DpcRequeueCount
    \XHCI Interrupter(*)\EventRingFullCount
    \XHCI Interrupter(*)\Events processed/DPC
    \XHCI Interrupter(*)\DPCs/sec
    \XHCI Interrupter(*)\Interrupts/sec

XHCI TransferRing (Consists of counters that measure aspects of a transferring of an xHCI controller.)

    \XHCI TransferRing(*)\Underrun Overrun count
    \XHCI TransferRing(*)\Missed Service Error Count
    \XHCI TransferRing(*)\Isoch TD Failures/sec
    \XHCI TransferRing(*)\Isoch TD/sec
    \XHCI TransferRing(*)\Bytes/Sec
    \XHCI TransferRing(*)\Failed Transfer Count
    \XHCI TransferRing(*)\Transfers/sec

See also

The PowerShell command noun counter

Index