Code:
3
The System performance object consists of counters that apply to more than one instance of a component processors on the computer.
5
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.
7
% Processor Time is the percentage of elapsed time that the processor spends to execute a non-Idle thread. It is calculated by measuring the percentage of time that the processor spends executing the idle thread and then subtracting that value from 100%. (Each processor has an idle thread that consumes cycles when no other threads are ready to run). This counter is the primary indicator of processor activity, and displays the average percentage of busy time observed during the sample interval. It should be noted that the accounting calculation of whether the processor is idle is performed at an internal sampling interval of the system clock (10ms). On todays fast processors, % Processor Time can therefore underestimate the processor utilization as the processor may be spending a lot of time servicing threads between the system clock sampling interval. Workload based timer applications are one example of applications which are more likely to be measured inaccurately as timers are signaled just after the sample is taken.
9
% Total DPC Time is the average percentage of time that all processors spend receiving and servicing deferred procedure calls (DPCs). (DPCs are interrupts that run at a lower priority than the standard interrupts). It is the sum of Processor: % DPC Time for all processors on the computer, divided by the number of processors. System: % Total DPC Time is a component of System: % Total Privileged Time because DPCs are executed in privileged mode. DPCs are counted separately and are not a component of the interrupt count. This counter displays the average busy time as a percentage of the sample time.
11
File Read Operations/sec is the combined rate of file system read requests to all devices on the computer, including requests to read from the file system cache. It is measured in numbers of reads. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
13
File Write Operations/sec is the combined rate of the file system write requests to all devices on the computer, including requests to write to data in the file system cache. It is measured in numbers of writes. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
15
File Control Operations/sec is the combined rate of file system operations that are neither reads nor writes, such as file system control requests and requests for information about device characteristics or status. This is the inverse of System: File Data Operations/sec and is measured in number of operations perf second. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
17
File Read Bytes/sec is the overall rate at which bytes are read to satisfy file system read requests to all devices on the computer, including reads from the file system cache. It is measured in number of bytes per second. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
19
File Write Bytes/sec is the overall rate at which bytes are written to satisfy file system write requests to all devices on the computer, including writes to the file system cache. It is measured in number of bytes per second. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
21
File Control Bytes/sec is the overall rate at which bytes are transferred for all file system operations that are neither reads nor writes, including file system control requests and requests for information about device characteristics or status. It is measured in numbers of bytes. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
23
% Total Interrupt Time is the average percentage of time that all processors spend receiving and servicing hardware interrupts during sample intervals, where the value is an indirect indicator of the activity of devices that generate interrupts. It is the sum of Processor: % Interrupt Time for of all processors on the computer, divided by the number of processors. DPCs are counted separately and are not a component of the interrupt count. This value is an indirect indicator of the activity of devices that generate interrupts, such as the system timer, the mouse, disk drivers, data communication lines, network interface cards and other peripheral devices.
25
Available Bytes is the amount of physical memory, in bytes, immediately available for allocation to a process or for system use. It is equal to the sum of memory assigned to the standby (cached), free and zero page lists. For a full explanation of the memory manager, refer to MSDN and/or the System Performance and Troubleshooting Guide chapter in the Windows Server 2003 Resource Kit.
27
Committed Bytes is the amount of committed virtual memory, in bytes. Committed memory is the physical memory which has space reserved on the disk paging file(s). There can be one or more paging files on each physical drive. This counter displays the last observed value only; it is not an average.
29
Page Faults/sec is the average number of pages faulted per second. It is measured in number of pages faulted per second because only one page is faulted in each fault operation, hence this is also equal to the number of page fault operations. This counter includes both hard faults (those that require disk access) and soft faults (where the faulted page is found elsewhere in physical memory.) Most processors can handle large numbers of soft faults without significant consequence. However, hard faults, which require disk access, can cause significant delays.
31
Commit Limit is the amount of virtual memory that can be committed without having to extend the paging file(s). It is measured in bytes. Committed memory is the physical memory which has space reserved on the disk paging files. There can be one paging file on each logical drive). If the paging file(s) are be expanded, this limit increases accordingly. This counter displays the last observed value only; it is not an average.
33
Write Copies/sec is the rate at which page faults are caused by attempts to write that have been satisfied by coping of the page from elsewhere in physical memory. This is an economical way of sharing data since pages are only copied when they are written to; otherwise, the page is shared. This counter shows the number of copies, without regard for the number of pages copied in each operation.
35
Transition Faults/sec is the rate at which page faults are resolved by recovering pages that were being used by another process sharing the page, or were on the modified page list or the standby list, or were being written to disk at the time of the page fault. The pages were recovered without additional disk activity. Transition faults are counted in numbers of faults; because only one page is faulted in each operation, it is also equal to the number of pages faulted.
37
Cache Faults/sec is the rate at which faults occur when a page sought in the file system cache is not found and must be retrieved from elsewhere in memory (a soft fault) or from disk (a hard fault). The file system cache is an area of physical memory that stores recently used pages of data for applications. Cache activity is a reliable indicator of most application I/O operations. This counter shows the number of faults, without regard for the number of pages faulted in each operation.
39
Demand Zero Faults/sec is the rate at which a zeroed page is required to satisfy the fault. Zeroed pages, pages emptied of previously stored data and filled with zeros, are a security feature of Windows that prevent processes from seeing data stored by earlier processes that used the memory space. Windows maintains a list of zeroed pages to accelerate this process. This counter shows the number of faults, without regard to the number of pages retrieved to satisfy the fault. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
41
Pages/sec is the rate at which pages are read from or written to disk to resolve hard page faults. This counter is a primary indicator of the kinds of faults that cause system-wide delays. It is the sum of Memory\\Pages Input/sec and Memory\\Pages Output/sec. It is counted in numbers of pages, so it can be compared to other counts of pages, such as Memory\\Page Faults/sec, without conversion. It includes pages retrieved to satisfy faults in the file system cache (usually requested by applications) non-cached mapped memory files.
43
Page Reads/sec is the rate at which the disk was read to resolve hard page faults. It shows the number of reads operations, without regard to the number of pages retrieved in each operation. Hard page faults occur when a process references a page in virtual memory that is not in working set or elsewhere in physical memory, and must be retrieved from disk. This counter is a primary indicator of the kinds of faults that cause system-wide delays. It includes read operations to satisfy faults in the file system cache (usually requested by applications) and in non-cached mapped memory files. Compare the value of Memory\\Pages Reads/sec to the value of Memory\\Pages Input/sec to determine the average number of pages read during each operation.
45
Processor Queue Length is the number of threads in the processor queue. Unlike the disk counters, this counter counters, this counter shows ready threads only, not threads that are running. There is a single queue for processor time even on computers with multiple processors. Therefore, if a computer has multiple processors, you need to divide this value by the number of processors servicing the workload. A sustained processor queue of less than 10 threads per processor is normally acceptable, dependent of the workload.
47
Thread State is the current state of the thread. It is 0 for Initialized, 1 for Ready, 2 for Running, 3 for Standby, 4 for Terminated, 5 for Wait, 6 for Transition, 7 for Unknown. A Running thread is using a processor; a Standby thread is about to use one. A Ready thread wants to use a processor, but is waiting for a processor because none are free. A thread in Transition is waiting for a resource in order to execute, such as waiting for its execution stack to be paged in from disk. A Waiting thread has no use for the processor because it is waiting for a peripheral operation to complete or a resource to become free.
49
Pages Output/sec is the rate at which pages are written to disk to free up space in physical memory. Pages are written back to disk only if they are changed in physical memory, so they are likely to hold data, not code. A high rate of pages output might indicate a memory shortage. Windows writes more pages back to disk to free up space when physical memory is in short supply. This counter shows the number of pages, and can be compared to other counts of pages, without conversion.
51
Page Writes/sec is the rate at which pages are written to disk to free up space in physical memory. Pages are written to disk only if they are changed while in physical memory, so they are likely to hold data, not code. This counter shows write operations, without regard to the number of pages written in each operation. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
53
The Browser performance object consists of counters that measure the rates of announcements, enumerations, and other Browser transmissions.
55
Announcements Server/sec is the rate at which the servers in this domain have announced themselves to this server.
57
Pool Paged Bytes is the size, in bytes, of the paged pool, an area of system memory (physical memory used by the operating system) for objects that can be written to disk when they are not being used. Memory\\Pool Paged Bytes is calculated differently than Process\\Pool Paged Bytes, so it might not equal Process\\Pool Paged Bytes\\_Total. This counter displays the last observed value only; it is not an average.
59
Pool Nonpaged Bytes is the size, in bytes, of the nonpaged pool, an area of system memory (physical memory used by the operating system) for objects that cannot be written to disk, but must remain in physical memory as long as they are allocated. Memory\\Pool Nonpaged Bytes is calculated differently than Process\\Pool Nonpaged Bytes, so it might not equal Process\\Pool Nonpaged Bytes\\_Total. This counter displays the last observed value only; it is not an average.
61
Pool Paged Allocs is the number of calls to allocate space in the paged pool. The paged pool is an area of system memory (physical memory used by the operating system) for objects that can be written to disk when they are not being used. It is measured in numbers of calls to allocate space, regardless of the amount of space allocated in each call. This counter displays the last observed value only; it is not an average.
63
Pool Paged Resident Bytes is the current size, in bytes, of the paged pool. The paged pool is an area of system memory (physical memory used by the operating system) for objects that can be written to disk when they are not being used. Space used by the paged and nonpaged pools are taken from physical memory, so a pool that is too large denies memory space to processes. This counter displays the last observed value only; it is not an average.
65
Pool Nonpaged Allocs is the number of calls to allocate space in the nonpaged pool. The nonpaged pool is an area of system memory area for objects that cannot be written to disk, and must remain in physical memory as long as they are allocated. It is measured in numbers of calls to allocate space, regardless of the amount of space allocated in each call. This counter displays the last observed value only; it is not an average.
67
Bytes Total/sec is the total rate of bytes sent to or received from the network by the protocol, but only for the frames (packets) which carry data. This is the sum of Frame Bytes/sec and Datagram Bytes/sec.
69
System Code Total Bytes is the size, in bytes, of the pageable operating system code currently in virtual memory. It is a measure of the amount of physical memory being used by the operating system that can be written to disk when not in use. This value is calculated by summing the bytes in Ntoskrnl.exe, Hal.dll, the boot drivers, and file systems loaded by Ntldr/osloader. This counter does not include code that must remain in physical memory and cannot be written to disk. This counter displays the last observed value only; it is not an average.
71
System Code Resident Bytes is the size, in bytes of the operating system code currently in physical memory that can be written to disk when not in use. This value is a component of Memory\\System Code Total Bytes, which also includes operating system code on disk. Memory\\System Code Resident Bytes (and Memory\\System Code Total Bytes) does not include code that must remain in physical memory and cannot be written to disk. This counter displays the last observed value only; it is not an average.
73
System Driver Total Bytes is the size, in bytes, of the pageable virtual memory currently being used by device drivers. Pageable memory can be written to disk when it is not being used. It includes physical memory (Memory\\System Driver Resident Bytes) and code and data paged to disk. It is a component of Memory\\System Code Total Bytes. This counter displays the last observed value only; it is not an average.
75
System Driver Resident Bytes is the size, in bytes, of the pageable physical memory being used by device drivers. It is the working set (physical memory area) of the drivers. This value is a component of Memory\\System Driver Total Bytes, which also includes driver memory that has been written to disk. Neither Memory\\System Driver Resident Bytes nor Memory\\System Driver Total Bytes includes memory that cannot be written to disk.
77
System Cache Resident Bytes is the size, in bytes, of the pageable operating system code in the file system cache. This value includes only current physical pages and does not include any virtual memory pages not currently resident. It does equal the System Cache value shown in Task Manager. As a result, this value may be smaller than the actual amount of virtual memory in use by the file system cache. This value is a component of Memory\\System Code Resident Bytes which represents all pageable operating system code that is currently in physical memory. This counter displays the last observed value only; it is not an average.
79
Announcements Domain/sec is the rate at which a domain has announced itself to the network.
81
Election Packets/sec is the rate at which browser election packets have been received by this workstation.
83
Mailslot Writes/sec is the rate at which mailslot messages have been successfully received.
85
Server List Requests/sec is the rate at which requests to retrieve a list of browser servers have been processed by this workstation.
87
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.
89
Data Maps/sec is the frequency that a file system such as NTFS, maps a page of a file into the file system cache to read the page.
91
Sync Data Maps/sec counts the frequency that a file system, such as NTFS, maps a page of a file into the file system cache to read the page, and wishes to wait for the page to be retrieved if it is not in main memory.
93
Async Data Maps/sec is the frequency that an application using a file system, such as NTFS, to map a page of a file into the file system cache to read the page, and does not wait for the page to be retrieved if it is not in main memory.
95
Data Map Hits is the percentage of data maps in the file system cache that could be resolved without having to retrieve a page from the disk, because the page was already in physical memory.
97
Data Map Pins/sec is the frequency of data maps in the file system cache that resulted in pinning a page in main memory, an action usually preparatory to writing to the file on disk. While pinned, a page's physical address in main memory and virtual address in the file system cache will not be altered.
99
Pin Reads/sec is the frequency of reading data into the file system cache preparatory to writing the data back to disk. Pages read in this fashion are pinned in memory at the completion of the read. While pinned, a page's physical address in the file system cache will not be altered.
101
Sync Pin Reads/sec is the frequency of reading data into the file system cache preparatory to writing the data back to disk. Pages read in this fashion are pinned in memory at the completion of the read. The file system will not regain control until the page is pinned in the file system cache, in particular if the disk must be accessed to retrieve the page. While pinned, a page's physical address in the file system cache will not be altered.
103
Async Pin Reads/sec is the frequency of reading data into the file system cache preparatory to writing the data back to disk. Pages read in this fashion are pinned in memory at the completion of the read. The file system will regain control immediately even if the disk must be accessed to retrieve the page. While pinned, a page's physical address will not be altered.
105
Pin Read Hits is the percentage of pin read requests that hit the file system cache, i.e., did not require a disk read in order to provide access to the page in the file system cache. While pinned, a page's physical address in the file system cache will not be altered. The LAN Redirector uses this method for retrieving data from the cache, as does the LAN Server for small transfers. This is usually the method used by the disk file systems as well.
107
Copy Reads/sec is the frequency of reads from pages of the file system cache that involve a memory copy of the data from the cache to the application's buffer. The LAN Redirector uses this method for retrieving information from the file system cache, as does the LAN Server for small transfers. This is a method used by the disk file systems as well.
109
Sync Copy Reads/sec is the frequency of reads from pages of the file system cache that involve a memory copy of the data from the cache to the application's buffer. The file system will not regain control until the copy operation is complete, even if the disk must be accessed to retrieve the page.
111
Async Copy Reads/sec is the frequency of reads from pages of the file system cache that involve a memory copy of the data from the cache to the application's buffer. The application will regain control immediately even if the disk must be accessed to retrieve the page.
113
Copy Read Hits is the percentage of cache copy read requests that hit the cache, that is, they did not require a disk read in order to provide access to the page in the cache. A copy read is a file read operation that is satisfied by a memory copy from a page in the cache to the application's buffer. The LAN Redirector uses this method for retrieving information from the cache, as does the LAN Server for small transfers. This is a method used by the disk file systems as well.
115
MDL Reads/sec is the frequency of reads from the file system cache that use a Memory Descriptor List (MDL) to access the data. The MDL contains the physical address of each page involved in the transfer, and thus can employ a hardware Direct Memory Access (DMA) device to effect the copy. The LAN Server uses this method for large transfers out of the server.
117
Sync MDL Reads/sec is the frequency of reads from the file system cache that use a Memory Descriptor List (MDL) to access the pages. The MDL contains the physical address of each page in the transfer, thus permitting Direct Memory Access (DMA) of the pages. If the accessed page(s) are not in main memory, the caller will wait for the pages to fault in from the disk.
119
Async MDL Reads/sec is the frequency of reads from the file system cache that use a Memory Descriptor List (MDL) to access the pages. The MDL contains the physical address of each page in the transfer, thus permitting Direct Memory Access (DMA) of the pages. If the accessed page(s) are not in main memory, the calling application program will not wait for the pages to fault in from disk.
121
MDL Read Hits is the percentage of Memory Descriptor List (MDL) Read requests to the file system cache that hit the cache, i.e., did not require disk accesses in order to provide memory access to the page(s) in the cache.
123
Read Aheads/sec is the frequency of reads from the file system cache in which the Cache detects sequential access to a file. The read aheads permit the data to be transferred in larger blocks than those being requested by the application, reducing the overhead per access.
125
Fast Reads/sec is the frequency of reads from the file system cache that bypass the installed file system and retrieve the data directly from the cache. Normally, file I/O requests invoke the appropriate file system to retrieve data from a file, but this path permits direct retrieval of data from the cache without file system involvement if the data is in the cache. Even if the data is not in the cache, one invocation of the file system is avoided.
127
Sync Fast Reads/sec is the frequency of reads from the file system cache that bypass the installed file system and retrieve the data directly from the cache. Normally, file I/O requests invoke the appropriate file system to retrieve data from a file, but this path permits direct retrieval of data from the cache without file system involvement if the data is in the cache. Even if the data is not in the cache, one invocation of the file system is avoided. If the data is not in the cache, the request (application program call) will wait until the data has been retrieved from disk.
129
Async Fast Reads/sec is the frequency of reads from the file system cache that bypass the installed file system and retrieve the data directly from the cache. Normally, file I/O requests will invoke the appropriate file system to retrieve data from a file, but this path permits data to be retrieved from the cache directly (without file system involvement) if the data is in the cache. Even if the data is not in the cache, one invocation of the file system is avoided. If the data is not in the cache, the request (application program call) will not wait until the data has been retrieved from disk, but will get control immediately.
131
Fast Read Resource Misses/sec is the frequency of cache misses necessitated by the lack of available resources to satisfy the request.
133
Fast Read Not Possibles/sec is the frequency of attempts by an Application Program Interface (API) function call to bypass the file system to get to data in the file system cache that could not be honored without invoking the file system.
135
Lazy Write Flushes/sec is the rate at which the Lazy Writer thread has written to disk. Lazy Writing is the process of updating the disk after the page has been changed in memory, so that the application that changed the file does not have to wait for the disk write to be complete before proceeding. More than one page can be transferred by each write operation.
137
Lazy Write Pages/sec is the rate at which the Lazy Writer thread has written to disk. Lazy Writing is the process of updating the disk after the page has been changed in memory, so that the application that changed the file does not have to wait for the disk write to be complete before proceeding. More than one page can be transferred on a single disk write operation.
139
Data Flushes/sec is the rate at which the file system cache has flushed its contents to disk as the result of a request to flush or to satisfy a write-through file write request. More than one page can be transferred on each flush operation.
141
Data Flush Pages/sec is the number of pages the file system cache has flushed to disk as a result of a request to flush or to satisfy a write-through file write request. More than one page can be transferred on each flush operation.
143
% User Time is the percentage of elapsed time the processor spends in the user mode. User mode is a restricted processing mode designed for applications, environment subsystems, and integral subsystems. The alternative, privileged mode, is designed for operating system components and allows direct access to hardware and all memory. The operating system switches application threads to privileged mode to access operating system services. This counter displays the average busy time as a percentage of the sample time.
145
% Privileged Time is the percentage of elapsed time that the process threads spent executing code in privileged mode. When a Windows system service in called, the service will often run in privileged mode to gain access to system-private data. Such data is protected from access by threads executing in user mode. Calls to the system can be explicit or implicit, such as page faults or interrupts. Unlike some early operating systems, Windows uses process boundaries for subsystem protection in addition to the traditional protection of user and privileged modes. Some work done by Windows on behalf of the application might appear in other subsystem processes in addition to the privileged time in the process.
147
Context Switches/sec is the combined rate at which all processors on the computer are switched from one thread to another. Context switches occur when a running thread voluntarily relinquishes the processor, is preempted by a higher priority ready thread, or switches between user-mode and privileged (kernel) mode to use an Executive or subsystem service. It is the sum of Thread\\Context Switches/sec for all threads running on all processors in the computer and is measured in numbers of switches. There are context switch counters on the System and Thread objects. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
149
Interrupts/sec is the average rate, in incidents per second, at which the processor received and serviced hardware interrupts. It does not include deferred procedure calls (DPCs), which are counted separately. This value is an indirect indicator of the activity of devices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication lines, network interface cards, and other peripheral devices. These devices normally interrupt the processor when they have completed a task or require attention. Normal thread execution is suspended. The system clock typically interrupts the processor every 10 milliseconds, creating a background of interrupt activity. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
151
System Calls/sec is the combined rate of calls to operating system service routines by all processes running on the computer. These routines perform all of the basic scheduling and synchronization of activities on the computer, and provide access to non-graphic devices, memory management, and name space management. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
153
Level 1 TLB Fills/sec is the frequency of faults that occur when reference is made to memory whose Page Table Entry (PTE) is not in the Translation Lookaside Buffer (TLB). On some computers this fault is handled by software loading the PTE into the TLB, and this counter is incremented.
155
Level 2 TLB Fills/sec is the frequency of faults that occur when reference is made to memory whose Page Table Entry (PTE) is not in the Translation Lookaside Buffer (TLB), nor is the page containing the PTE. On some computers this fault is handled by software loading the PTE into the TLB, and this counter is incremented.
157
% User Time is the percentage of elapsed time that the process threads spent executing code in user mode. Applications, environment subsystems, and integral subsystems execute in user mode. Code executing in user mode cannot damage the integrity of the Windows executive, kernel, and device drivers. Unlike some early operating systems, Windows uses process boundaries for subsystem protection in addition to the traditional protection of user and privileged modes. Some work done by Windows on behalf of the application might appear in other subsystem processes in addition to the privileged time in the process.
159
% Privileged Time is the percentage of elapsed time that the process threads spent executing code in privileged mode. When a Windows system service is called, the service will often run in privileged mode to gain access to system-private data. Such data is protected from access by threads executing in user mode. Calls to the system can be explicit or implicit, such as page faults or interrupts. Unlike some early operating systems, Windows uses process boundaries for subsystem protection in addition to the traditional protection of user and privileged modes. Some work done by Windows on behalf of the application might appear in other subsystem processes in addition to the privileged time in the process.
161
Enumerations Server/sec is the rate at which server browse requests have been processed by this workstation.
163
Enumerations Domain/sec is the rate at which domain browse requests have been processed by this workstation.
165
Enumerations Other/sec is the rate at which browse requests processed by this workstation are not domain or server browse requests.
167
Missed Server Announcements is the number of server announcements that have been missed due to configuration or allocation limits.
169
Missed Mailslot Datagrams is the number of Mailslot Datagrams that have been discarded due to configuration or allocation limits.
171
Missed Server List Requests is the number of requests to retrieve a list of browser servers that were received by this workstation, but could not be processed.
173
Virtual Bytes Peak is the maximum size, in bytes, of virtual address space the process has used at any one time. Use of virtual address space does not necessarily imply corresponding use of either disk or main memory pages. However, virtual space is finite, and the process might limit its ability to load libraries.
175
Virtual Bytes is the current size, in bytes, of the virtual address space the process is using. Use of virtual address space does not necessarily imply corresponding use of either disk or main memory pages. Virtual space is finite, and the process can limit its ability to load libraries.
177
Page Faults/sec is the rate at which page faults by the threads executing in this process are occurring. A page fault occurs when a thread refers to a virtual memory page that is not in its working set in main memory. This may not cause the page to be fetched from disk if it is on the standby list and hence already in main memory, or if it is in use by another process with whom the page is shared.
179
Working Set Peak is the maximum size, in bytes, of the Working Set of this process at any point in time. The Working Set is the set of memory pages touched recently by the threads in the process. If free memory in the computer is above a threshold, pages are left in the Working Set of a process even if they are not in use. When free memory falls below a threshold, pages are trimmed from Working Sets. If they are needed they will then be soft-faulted back into the Working Set before they leave main memory.
181
Working Set is the current size, in bytes, of the Working Set of this process. The Working Set is the set of memory pages touched recently by the threads in the process. If free memory in the computer is above a threshold, pages are left in the Working Set of a process even if they are not in use. When free memory falls below a threshold, pages are trimmed from Working Sets. If they are needed they will then be soft-faulted back into the Working Set before leaving main memory.
183
Page File Bytes Peak is the maximum amount of virtual memory, in bytes, that this process has reserved for use in the paging file(s). Paging files are used to store pages of memory used by the process that are not contained in other files. Paging files are shared by all processes, and the lack of space in paging files can prevent other processes from allocating memory. If there is no paging file, this counter reflects the maximum amount of virtual memory that the process has reserved for use in physical memory.
185
Page File Bytes is the current amount of virtual memory, in bytes, that this process has reserved for use in the paging file(s). Paging files are used to store pages of memory used by the process that are not contained in other files. Paging files are shared by all processes, and the lack of space in paging files can prevent other processes from allocating memory. If there is no paging file, this counter reflects the current amount of virtual memory that the process has reserved for use in physical memory.
187
Private Bytes is the current size, in bytes, of memory that this process has allocated that cannot be shared with other processes.
189
% Processor Time is the percentage of elapsed time that all of process threads used the processor to execution instructions. An instruction is the basic unit of execution in a computer, a thread is the object that executes instructions, and a process is the object created when a program is run. Code executed to handle some hardware interrupts and trap conditions are included in this count.
191
% Processor Time is the percentage of elapsed time that all of process threads used the processor to execution instructions. An instruction is the basic unit of execution in a computer, a thread is the object that executes instructions, and a process is the object created when a program is run. Code executed to handle some hardware interrupts and trap conditions are included in this count.
193
% User Time is the percentage of elapsed time that this thread has spent executing code in user mode. Applications, environment subsystems, and integral subsystems execute in user mode. Code executing in user mode cannot damage the integrity of the Windows NT Executive, Kernel, and device drivers. Unlike some early operating systems, Windows NT uses process boundaries for subsystem protection in addition to the traditional protection of user and privileged modes. These subsystem processes provide additional protection. Therefore, some work done by Windows NT on behalf of your application might appear in other subsystem processes in addition to the privileged time in your process.
195
% Privileged Time is the percentage of elapsed time that the process threads spent executing code in privileged mode. When a Windows system service in called, the service will often run in privileged mode to gain access to system-private data. Such data is protected from access by threads executing in user mode. Calls to the system can be explicit or implicit, such as page faults or interrupts. Unlike some early operating systems, Windows uses process boundaries for subsystem protection in addition to the traditional protection of user and privileged modes. Some work done by Windows on behalf of the application might appear in other subsystem processes in addition to the privileged time in the process.
197
Context Switches/sec is the rate of switches from one thread to another. Thread switches can occur either inside of a single process or across processes. A thread switch can be caused either by one thread asking another for information, or by a thread being preempted by another, higher priority thread becoming ready to run. Unlike some early operating systems, Windows NT uses process boundaries for subsystem protection in addition to the traditional protection of user and privileged modes. These subsystem processes provide additional protection. Therefore, some work done by Windows NT on behalf of an application appear in other subsystem processes in addition to the privileged time in the application. Switching to the subsystem process causes one Context Switch in the application thread. Switching back causes another Context Switch in the subsystem thread.
199
Current Disk Queue Length is the number of requests outstanding on the disk at the time the performance data is collected. It also includes requests in service at the time of the collection. This is a instantaneous snapshot, not an average over the time interval. Multi-spindle disk devices can have multiple requests that are active at one time, but other concurrent requests are awaiting service. This counter might reflect a transitory high or low queue length, but if there is a sustained load on the disk drive, it is likely that this will be consistently high. Requests experience delays proportional to the length of this queue minus the number of spindles on the disks. For good performance, this difference should average less than two.
201
% Disk Time is the percentage of elapsed time that the selected disk drive was busy servicing read or write requests.
203
% Disk Read Time is the percentage of elapsed time that the selected disk drive was busy servicing read requests.
205
% Disk Write Time is the percentage of elapsed time that the selected disk drive was busy servicing write requests.
207
Avg. Disk sec/Transfer is the time, in seconds, of the average disk transfer.
209
Avg. Disk sec/Read is the average time, in seconds, of a read of data from the disk.
211
Avg. Disk sec/Write is the average time, in seconds, of a write of data to the disk.
213
Disk Transfers/sec is the rate of read and write operations on the disk.
215
Disk Reads/sec is the rate of read operations on the disk.
217
Disk Writes/sec is the rate of write operations on the disk.
219
Disk Bytes/sec is the rate bytes are transferred to or from the disk during write or read operations.
221
Disk Read Bytes/sec is the rate at which bytes are transferred from the disk during read operations.
223
Disk Write Bytes/sec is rate at which bytes are transferred to the disk during write operations.
225
Avg. Disk Bytes/Transfer is the average number of bytes transferred to or from the disk during write or read operations.
227
Avg. Disk Bytes/Read is the average number of bytes transferred from the disk during read operations.
229
Avg. Disk Bytes/Write is the average number of bytes transferred to the disk during write operations.
231
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.
233
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.
235
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.
237
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.
239
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.
241
% Total Processor Time is the average percentage of time that all processors on the computer are executing non-idle threads. This counter was designed as the primary indicator of processor activity on multiprocessor computers. It is equal to the sum of Process: % Processor Time for all processors, divided by the number of processors. It is calculated by summing the time that all processors spend executing the thread of the Idle process in each sample interval, subtracting that value from 100%, and dividing the difference by the number of processors on the computer. (Each processor has an Idle thread which consumes cycles when no other threads are ready to run). For example, on a multiprocessor computer, a value of 50% means that all processors are busy for half of the sample interval, or that half of the processors are busy for all of the sample interval. This counter displays the average percentage of busy time observed during the sample interval. It is calculated by monitoring the time the service was inactive, and then subtracting that value from 100%.
243
% Total User Time is the average percentage of non-idle time all processors spend in user mode. It is the sum of Processor: % User Time for all processors on the computer, divided by the number of processors. System: % Total User Time and System: % Total Privileged Time sum to % Total Processor Time, but not always to 100%. (User mode is a restricted processing mode designed for applications, environment subsystems, and integral subsystems. The alternative, privileged mode, is designed for operating system components and allows direct access to hardware and all memory. The operating system switches application threads to privileged mode to access operating system services). This counter displays the average busy time as a percentage of the sample time.
245
% Total Privileged Time is the average percentage of non-idle time all processors spend in privileged (kernel) mode. It is the sum of Processor: % Privileged Time for all processors on the computer, divided by the number of processors. System: % Total User Time and System: % Total Privileged Time sum to % Total Processor Time, but not always to 100%. (Privileged mode is an processing mode designed for operating system components which allows direct access to hardware and all memory. The operating system switches application threads to privileged mode to access operating system services. The alternative, user mode, is a restricted processing mode designed for applications and environment subsystems). This counter displays the average busy time as a percentage of the sample time.
247
Total Interrupts/sec is the combined rate of hardware interrupts received and serviced by all processors on the computer It is the sum of Processor: Interrupts/sec for all processors, and divided by the number of processors, and is measured in numbers of interrupts. It does not include DPCs, which are counted separately. This value is an indirect indicator of the activity of devices that generate interrupts, such as the system timer, the mouse, disk drivers, data communication lines, network interface cards and other peripheral devices. These devices normally interrupt the processor when they have completed a task or require attention. Normal thread execution is suspended during interrupts. Most system clocks interrupt the processor every 10 milliseconds, creating a background of interrupt activity. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
249
Processes is the number of processes in the computer at the time of data collection. This is an instantaneous count, not an average over the time interval. Each process represents the running of a program.
251
Threads is the number of threads in the computer at the time of data collection. This is an instantaneous count, not an average over the time interval. A thread is the basic executable entity that can execute instructions in a processor.
253
Events is the number of events in the computer at the time of data collection. This is an instantaneous count, not an average over the time interval. An event is used when two or more threads try to synchronize execution.
255
Semaphores is the number of semaphores in the computer at the time of data collection. This is an instantaneous count, not an average over the time interval. Threads use semaphores to obtain exclusive access to data structures that they share with other threads.
257
Mutexes counts the number of mutexes in the computer at the time of data collection. This is an instantaneous count, not an average over the time interval. Mutexes are used by threads to assure only one thread is executing a particular section of code.
259
Sections is the number of sections in the computer at the time of data collection. This is an instantaneous count, not an average over the time interval. A section is a portion of virtual memory created by a process for storing data. A process can share sections with other processes.
261
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.
263
The Redirector performance object consists of counter that monitor network connections originating at the local computer.
265
Bytes Received/sec is the rate of bytes coming in to the Redirector from the network. It includes all application data as well as network protocol information (such as packet headers).
267
Packets Received/sec is the rate at which the Redirector is receiving packets (also called SMBs or Server Message Blocks). Network transmissions are divided into packets. The average number of bytes received in a packet can be obtained by dividing Bytes Received/sec by this counter. Some packets received might not contain incoming data (for example an acknowledgment to a write made by the Redirector would count as an incoming packet).
269
Read Bytes Paging/sec is the rate at which the Redirector is attempting to read bytes in response to page faults. Page faults are caused by loading of modules (such as programs and libraries), by a miss in the Cache (see Read Bytes Cache/sec), or by files directly mapped into the address space of applications (a high-performance feature of Windows NT).
271
Read Bytes Non-Paging/sec are those bytes read by the Redirector in response to normal file requests by an application when they are redirected to come from another computer. In addition to file requests, this counter includes other methods of reading across the network such as Named Pipes and Transactions. This counter does not count network protocol information, just application data.
273
Read Bytes Cache/sec is the rate at which applications are accessing the file system cache by using the Redirector. Some of these data requests are satisfied by retrieving the data from the cache. Requests that miss the Cache cause a page fault (see Read Bytes Paging/sec).
275
Read Bytes Network/sec is the rate at which applications are reading data across the network. This occurs when data sought in the file system cache is not found there and must be retrieved from the network. Dividing this value by Bytes Received/sec indicates the proportion of application data traveling across the network. (see Bytes Received/sec).
277
Bytes Transmitted/sec is the rate at which bytes are leaving the Redirector to the network. It includes all application data as well as network protocol information (such as packet headers and the like).
279
Packets Transmitted/sec is the rate at which the Redirector is sending packets (also called SMBs or Server Message Blocks). Network transmissions are divided into packets. The average number of bytes transmitted in a packet can be obtained by dividing Bytes Transmitted/sec by this counter.
281
Write Bytes Paging/sec is the rate at which the Redirector is attempting to write bytes changed in the pages being used by applications. The program data changed by modules (such as programs and libraries) that were loaded over the network are 'paged out' when no longer needed. Other output pages come from the file system cache (see Write Bytes Cache/sec).
283
Write Bytes Non-Paging/sec is the rate at which bytes are written by the Redirector in response to normal file outputs by an application when they are redirected to another computer. In addition to file requests, this count includes other methods of writing across the network, such as Named Pipes and Transactions. This counter does not count network protocol information, just application data.
285
Write Bytes Cache/sec is the rate at which applications on your computer are writing to the file system cache by using the Redirector. The data might not leave your computer immediately; it can be retained in the cache for further modification before being written to the network. This saves network traffic. Each write of a byte into the cache is counted here.
287
Write Bytes Network/sec is the rate at which applications are writing data across the network. This occurs when the file system cache is bypassed, such as for Named Pipes or Transactions, or when the cache writes the bytes to disk to make room for other data. Dividing this counter by Bytes Transmitted/sec will indicate the proportion of application data being to the network (see Transmitted Bytes/sec).
289
File Read Operations/sec is the rate at which applications are asking the Redirector for data. Each call to a file system or similar Application Program Interface (API) call counts as one operation.
291
Read Operations Random/sec counts the rate at which, on a file-by-file basis, reads are made that are not sequential. If a read is made using a particular file handle, and then is followed by another read that is not immediately the contiguous next byte, this counter is incremented by one.
293
Read Packets/sec is the rate at which read packets are being placed on the network. Each time a single packet is sent with a request to read data remotely, this counter is incremented by one.
295
Reads Large/sec is the rate at which reads over 2 times the server's negotiated buffer size are made by applications. Too many of these could place a strain on server resources. This counter is incremented once for each read. It does not count packets.
297
Read Packets Small/sec is the rate at which reads less than one-fourth of the server's negotiated buffer size are made by applications. Too many of these could indicate a waste of buffers on the server. This counter is incremented once for each read. It does not count packets.
299
File Write Operations/sec is the rate at which applications are sending data to the Redirector. Each call to a file system or similar Application Program Interface (API) call counts as one operation.
301
Write Operations Random/sec is the rate at which, on a file-by-file basis, writes are made that are not sequential. If a write is made using a particular file handle, and then is followed by another write that is not immediately the next contiguous byte, this counter is incremented by one.
303
Write Packets/sec is the rate at which writes are being sent to the network. Each time a single packet is sent with a request to write remote data, this counter is incremented by one.
305
Writes Large/sec is the rate at which writes are made by applications that are over 2 times the server's negotiated buffer size. Too many of these could place a strain on server resources. This counter is incremented once for each write: it counts writes, not packets.
307
Write Packets Small/sec is the rate at which writes are made by applications that are less than one-fourth of the server's negotiated buffer size. Too many of these could indicate a waste of buffers on the server. This counter is incremented once for each write: it counts writes, not packets.
309
Reads Denied/sec is the rate at which the server is unable to accommodate requests for Raw Reads. When a read is much larger than the server's negotiated buffer size, the Redirector requests a Raw Read which, if granted, would permit the transfer of the data without lots of protocol overhead on each packet. To accomplish this the server must lock out other requests, so the request is denied if the server is really busy.
311
Writes Denied/sec is the rate at which the server is unable to accommodate requests for Raw Writes. When a write is much larger than the server's negotiated buffer size, the Redirector requests a Raw Write which, if granted, would permit the transfer of the data without lots of protocol overhead on each packet. To accomplish this the server must lock out other requests, so the request is denied if the server is really busy.
313
Network Errors/sec is the rate at which serious unexpected errors are occurring. Such errors generally indicate that the Redirector and one or more Servers are having serious communication difficulties. For example an SMB (Server Manager Block) protocol error is a Network Error. An entry is written to the System Event Log and provide details.
315
Server Sessions counts the total number of security objects the Redirector has managed. For example, a logon to a server followed by a network access to the same server will establish one connection, but two sessions.
317
Server Reconnects counts the number of times your Redirector has had to reconnect to a server in order to complete a new active request. You can be disconnected by the Server if you remain inactive for too long. Locally even if all your remote files are closed, the Redirector will keep your connections intact for (nominally) ten minutes. Such inactive connections are called Dormant Connections. Reconnecting is expensive in time.
319
Connects Core counts the number of connections you have to servers running the original MS-Net SMB protocol, including MS-Net itself and Xenix and VAX's.
321
Connects LAN Manager 2.0 counts connections to LAN Manager 2.0 servers, including LMX servers.
323
Connects LAN Manager 2.1 counts connections to LAN Manager 2.1 servers, including LMX servers.
325
Connects Windows NT counts the connections to Windows 2000 or earlier computers.
327
Server Disconnects counts the number of times a Server has disconnected your Redirector. See also Server Reconnects.
329
Server Sessions Hung counts the number of active sessions that are timed out and unable to proceed due to a lack of response from the remote server.
331
The Server performance object consists of counters that measure communication between the local computer and the network.
333
The number of bytes the server has received from the network. Indicates how busy the server is.
335
The number of bytes the server has sent on the network. Indicates how busy the server is.
337
Thread Wait Reason is only applicable when the thread is in the Wait state (see Thread State). It is 0 or 7 when the thread is waiting for the Executive, 1 or 8 for a Free Page, 2 or 9 for a Page In, 3 or 10 for a Pool Allocation, 4 or 11 for an Execution Delay, 5 or 12 for a Suspended condition, 6 or 13 for a User Request, 14 for an Event Pair High, 15 for an Event Pair Low, 16 for an LPC Receive, 17 for an LPC Reply, 18 for Virtual Memory, 19 for a Page Out; 20 and higher are not assigned at the time of this writing. Event Pairs are used to communicate with protected subsystems (see Context Switches).
339
% DPC Time is the percentage of time that the processor spent receiving and servicing deferred procedure calls (DPCs) during the sample interval. DPCs are interrupts that run at a lower priority than standard interrupts. % DPC Time is a component of % Privileged Time because DPCs are executed in privileged mode. They are counted separately and are not a component of the interrupt counters. This counter displays the average busy time as a percentage of the sample time.
341
The number of sessions that have been closed due to their idle time exceeding the AutoDisconnect parameter for the server. Shows whether the AutoDisconnect setting is helping to conserve resources.
343
The number of sessions that have been closed due to unexpected error conditions or sessions that have reached the autodisconnect timeout and have been disconnected normally.
345
The number of sessions that have terminated normally. Useful in interpreting the Sessions Times Out and Sessions Errored Out statistics--allows percentage calculations.
347
The number of sessions that have been forced to logoff. Can indicate how many sessions were forced to logoff due to logon time constraints.
349
The number of failed logon attempts to the server. Can indicate whether password guessing programs are being used to crack the security on the server.
351
The number of times opens on behalf of clients have failed with STATUS_ACCESS_DENIED. Can indicate whether somebody is randomly attempting to access files in hopes of getting at something that was not properly protected.
353
The number of times accesses to files opened successfully were denied. Can indicate attempts to access files without proper access authorization.
355
The number of times an internal Server Error was detected. Unexpected errors usually indicate a problem with the Server.
357
The number of times the server has rejected blocking SMBs due to insufficient count of free work items. Indicates whether the MaxWorkItem or MinFreeWorkItems server parameters might need to be adjusted.
359
The number of times STATUS_DATA_NOT_ACCEPTED was returned at receive indication time. This occurs when no work item is available or can be allocated to service the incoming request. Indicates whether the InitWorkItems or MaxWorkItems parameters might need to be adjusted.
361
The number of successful open attempts performed by the server of behalf of clients. Useful in determining the amount of file I/O, determining overhead for path-based operations, and for determining the effectiveness of open locks.
363
The number of files currently opened in the server. Indicates current server activity.
365
The number of sessions currently active in the server. Indicates current server activity.
367
The number of searches for files currently active in the server. Indicates current server activity.
369
The number of bytes of non-pageable computer memory the server is using. This value is useful for determining the values of the MaxNonpagedMemoryUsage value entry in the Windows NT Registry.
371
The number of times allocations from nonpaged pool have failed. Indicates that the computer's physical memory is too small.
373
The maximum number of bytes of nonpaged pool the server has had in use at any one point. Indicates how much physical memory the computer should have.
375
The number of bytes of pageable computer memory the server is currently using. Can help in determining good values for the MaxPagedMemoryUsage parameter.
377
The number of times allocations from paged pool have failed. Indicates that the computer's physical memory or paging file are too small.
379
The maximum number of bytes of paged pool the server has had allocated. Indicates the proper sizes of the Page File(s) and physical memory.
381
Server Announce Allocations Failed/sec is the rate at which server (or domain) announcements have failed due to lack of memory.
383
Mailslot Allocations Failed is the number of times the datagram receiver has failed to allocate a buffer to hold a user mailslot write.
385
Mailslot Receives Failed indicates the number of mailslot messages that could not be received due to transport failures.
387
Mailslot Writes Failed is the total number of mailslot messages that have been successfully received, but that could not be written to the mailslot.
389
Bytes Total/sec is the rate the Redirector is processing data bytes. This includes all application and file data in addition to protocol information such as packet headers.
391
File Data Operations/sec is the rate at which the Redirector is processing data operations. One operation should include many bytes, since each operation has overhead. The efficiency of this path can be determined by dividing the Bytes/sec by this counter to obtain the average number of bytes transferred per operation.
393
Current Commands counter indicates the number of pending commands from the local computer to all destination servers. If the Current Commands counter shows a high number and the local computer is idle, this may indicate a network-related problem or a redirector bottleneck on the local computer.
395
The number of bytes the server has sent to and received from the network. This value provides an overall indication of how busy the server is.
397
% Interrupt Time is the time the processor spends receiving and servicing hardware interrupts during sample intervals. This value is an indirect indicator of the activity of devices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication lines, network interface cards and other peripheral devices. These devices normally interrupt the processor when they have completed a task or require attention. Normal thread execution is suspended during interrupts. Most system clocks interrupt the processor every 10 milliseconds, creating a background of interrupt activity. suspends normal thread execution during interrupts. This counter displays the average busy time as a percentage of the sample time.
399
The NWLink NetBIOS performance object consists of counters that monitor IPX transport rates and connections.
401
Packets/sec is the rate the Redirector is processing data packets. One packet includes (hopefully) many bytes. We say hopefully here because each packet has protocol overhead. You can determine the efficiency of this path by dividing the Bytes/sec by this counter to determine the average number of bytes transferred/packet. You can also divide this counter by Operations/sec to determine the average number of packets per operation, another measure of efficiency.
405
Context Blocks Queued per second is the rate at which work context blocks had to be placed on the server's FSP queue to await server action.
407
File Data Operations/ sec is the combined rate of read and write operations on all logical disks on the computer. This is the inverse of System: File Control Operations/sec. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
409
% Free Space is the percentage of total usable space on the selected logical disk drive that was free.
411
Free Megabytes displays the unallocated space, in megabytes, on the disk drive in megabytes. One megabyte is equal to 1,048,576 bytes.
413
Connections Open is the number of connections currently open for this protocol. This counter shows the current count only and does not accumulate over time.
415
Connections No Retries is the total count of connections that were successfully made on the first try. This number is an accumulator and shows a running total.
417
Connections With Retries is the total count of connections that were made after retrying the attempt. A retry occurs when the first connection attempt failed. This number is an accumulator and shows a running total.
419
Disconnects Local is the number of session disconnections that were initiated by the local computer. This number is an accumulator and shows a running total.
421
Disconnects Remote is the number of session disconnections that were initiated by the remote computer. This number is an accumulator and shows a running total.
423
Failures Link is the number of connections that were dropped due to a link failure. This number is an accumulator and shows a running total.
425
Failures Adapter is the number of connections that were dropped due to an adapter failure. This number is an accumulator and shows a running total.
427
Connection Session Timeouts is the number of connections that were dropped due to a session timeout. This number is an accumulator and shows a running total.
429
Connections Canceled is the number of connections that were canceled. This number is an accumulator and shows a running total.
431
Failures Resource Remote is the number of connections that failed because of resource problems or shortages on the remote computer. This number is an accumulator and shows a running total.
433
Failures Resource Local is the number of connections that failed because of resource problems or shortages on the local computer. This number is an accumulator and shows a running total.
435
Failures Not Found is the number of connection attempts that failed because the remote computer could not be found. This number is an accumulator and shows a running total.
437
Failures No Listen is the number of connections that were rejected because the remote computer was not listening for connection requests.
439
Datagrams/sec is the rate at which datagrams are processed by the computer. This counter displays the sum of datagrams sent and datagrams received. A datagram is a connectionless packet whose delivery to a remote is not guaranteed.
441
Datagram Bytes/sec is the rate at which datagram bytes are processed by the computer. This counter is the sum of datagram bytes that are sent as well as received. A datagram is a connectionless packet whose delivery to a remote is not guaranteed.
443
Datagrams Sent/sec is the rate at which datagrams are sent from the computer. A datagram is a connectionless packet whose delivery to a remote computer is not guaranteed.
445
Datagram Bytes Sent/sec is the rate at which datagram bytes are sent from the computer. A datagram is a connectionless packet whose delivery to a remote computer is not guaranteed.
447
Datagrams Received/sec is the rate at which datagrams are received by the computer. A datagram is a connectionless packet whose delivery to a remote computer is not guaranteed.
449
Datagram Bytes Received/sec is the rate at which datagram bytes are received by the computer. A datagram is a connectionless packet whose delivery to a remote computer is not guaranteed.
451
Packets/sec is the rate at which packets are processed by the computer. This count is the sum of Packets Sent and Packets Received per second. This counter includes all packets processed: control as well as data packets.
453
Packets Sent/sec is the rate at which packets are sent by the computer. This counter counts all packets sent by the computer, i.e. control as well as data packets.
455
Packets Received/sec is the rate at which packets are received by the computer. This counter counts all packets processed: control as well as data packets.
457
Frames/sec is the rate at which data frames (or packets) are processed by the computer. This counter is the sum of data frames sent and data frames received. This counter only counts those frames (packets) that carry data.
459
Frame Bytes/sec is the rate at which data bytes are processed by the computer. This counter is the sum of data frame bytes sent and received. This counter only counts the byte in frames (packets) that carry data.
461
Frames Sent/sec is the rate at which data frames are sent by the computer. This counter only counts the frames (packets) that carry data.
463
Frame Bytes Sent/sec is the rate at which data bytes are sent by the computer. This counter only counts the bytes in frames (packets) that carry data.
465
Frames Received/sec is the rate at which data frames are received by the computer. This counter only counts the frames (packets) that carry data.
467
Frame Bytes Received/sec is the rate at which data bytes are received by the computer. This counter only counts the frames (packets) that carry data.
469
Frames Re-Sent/sec is the rate at which data frames (packets) are re-sent by the computer. This counter only counts the frames or packets that carry data.
471
Frame Bytes Re-Sent/sec is the rate at which data bytes are re-sent by the computer. This counter only counts the bytes in frames that carry data.
473
Frames Rejected/sec is the rate at which data frames are rejected. This counter only counts the frames (packets) that carry data.
475
Frame Bytes Rejected/sec is the rate at which data bytes are rejected. This counter only counts the bytes in data frames (packets) that carry data.
477
Expirations Response is the count of T1 timer expirations.
479
Expirations Ack is the count of T2 timer expirations.
481
Window Send Maximum is the maximum number of bytes of data that will be sent before waiting for an acknowledgment from the remote computer.
483
Window Send Average is the running average number of data bytes that were sent before waiting for an acknowledgment from the remote computer.
485
Piggyback Ack Queued/sec is the rate at which piggybacked acknowledgments are queued. Piggyback acknowledgments are acknowledgments to received packets that are to be included in the next outgoing packet to the remote computer.
487
Piggyback Ack Timeouts is the number of times that a piggyback acknowledgment could not be sent because there was no outgoing packet to the remote on which to piggyback. A piggyback ack is an acknowledgment to a received packet that is sent along in an outgoing data packet to the remote computer. If no outgoing packet is sent within the timeout period, then an ack packet is sent and this counter is incremented.
489
The NWLink IPX performance object consists of counters that measure datagram transmission to and from computers using the IPX protocol.
491
The NWLink SPX performance object consist of counters that measure data transmission and session connections for computers using the SPX protocol.
493
The NetBEUI performance object consists of counters that measure data transmission for network activity which conforms to the NetBIOS End User Interface standard.
495
The NetBEUI Resource performance object consists of counters that track the use of buffers by the NetBEUI protocol.
497
Used Maximum is the maximum number of NetBEUI resources (buffers) in use at any point in time. This value is useful in sizing the maximum resources provided. The number in parentheses following the resource name is used to identify the resource in Event Log messages.
499
Used Average is the current number of resources (buffers) in use at this time. The number in parentheses following the resource name is used to identify the resource in Event Log messages.
501
Times Exhausted is the number of times all the resources (buffers) were in use. The number in parentheses following the resource name is used to identify the resource in Event Log messages.
503
The NBT Connection performance object consists of counters that measure the rates at which bytes are sent and received over the NBT connection between the local computer and a remote computer. The connection is identified by the name of the remote computer.
505
Bytes Received/sec is the rate at which bytes are received by the local computer over an NBT connection to some remote computer. All the bytes received by the local computer over the particular NBT connection are counted.
507
Bytes Sent/sec is the rate at which bytes are sent by the local computer over an NBT connection to some remote computer. All the bytes sent by the local computer over the particular NBT connection are counted.
509
Bytes Total/sec is the rate at which bytes are sent or received by the local computer over an NBT connection to some remote computer. All the bytes sent or received by the local computer over the particular NBT connection are counted.
511
The Network Interface performance object consists of counters that measure the rates at which bytes and packets are sent and received over a TCP/IP network connection. It includes counters that monitor connection errors.
513
Bytes Total/sec is the rate at which bytes are sent and received over each network adapter, including framing characters. Network Interface\Bytes Total/sec is a sum of Network Interface\Bytes Received/sec and Network Interface\Bytes Sent/sec.
515
Packets/sec is the rate at which packets are sent and received on the network interface.
517
Packets Received/sec is the rate at which packets are received on the network interface.
519
Packets Sent/sec is the rate at which packets are sent on the network interface.
521
Current Bandwidth is an estimate of the current bandwidth of the network interface in bits per second (BPS). For interfaces that do not vary in bandwidth or for those where no accurate estimation can be made, this value is the nominal bandwidth.
523
Bytes Received/sec is the rate at which bytes are received over each network adapter, including framing characters. Network Interface\Bytes Received/sec is a subset of Network Interface\Bytes Total/sec.
525
Packets Received Unicast/sec is the rate at which (subnet) unicast packets are delivered to a higher-layer protocol.
527
Packets Received Non-Unicast/sec is the rate at which non-unicast (subnet broadcast or subnet multicast) packets are delivered to a higher-layer protocol.
529
Packets Received Discarded is the number of inbound packets that were chosen to be discarded even though no errors had been detected to prevent their delivery to a higher-layer protocol. One possible reason for discarding packets could be to free up buffer space.
531
Packets Received Errors is the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol.
533
Packets Received Unknown is the number of packets received through the interface that were discarded because of an unknown or unsupported protocol.
535
Bytes Sent/sec is the rate at which bytes are sent over each network adapter, including framing characters. Network Interface\Bytes Sent/sec is a subset of Network Interface\Bytes Total/sec.
537
Packets Sent Unicast/sec is the rate at which packets are requested to be transmitted to subnet-unicast addresses by higher-level protocols. The rate includes the packets that were discarded or not sent.
539
Packets Sent Non-Unicast/sec is the rate at which packets are requested to be transmitted to non-unicast (subnet broadcast or subnet multicast) addresses by higher-level protocols. The rate includes the packets that were discarded or not sent.
541
Packets Outbound Discarded is the number of outbound packets that were chosen to be discarded even though no errors had been detected to prevent transmission. One possible reason for discarding packets could be to free up buffer space.
543
Packets Outbound Errors is the number of outbound packets that could not be transmitted because of errors.
545
Output Queue Length is the length of the output packet queue (in packets). If this is longer than two, there are delays and the bottleneck should be found and eliminated, if possible. Since the requests are queued by the Network Driver Interface Specification (NDIS) in this implementation, this will always be 0.
547
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.
549
Datagrams/sec is the rate, in incidents per second, at which IP datagrams were received from or sent to the interfaces, including those in error. Forwarded datagrams are not included in this rate.
551
Datagrams Received/sec is the rate, in incidents per second, at which IP datagrams are received from the interfaces, including those in error. Datagrams Received/sec is a subset of Datagrams/sec.
553
Datagrams Received Header Errors is the number of input datagrams that were discarded due to errors in the IP headers, including bad checksums, version number mismatch, other format errors, time-to-live exceeded, errors discovered in processing their IP options, etc.
555
Datagrams Received Address Errors is the number of input datagrams that were discarded because the IP address in their IP header destination field was not valid for the computer. This count includes invalid addresses (for example, 0.0. 0.0) and addresses of unsupported Classes (for example, Class E). For entities that are not IP gateways and do not forward datagrams, this counter includes datagrams that were discarded because the destination address was not a local address.
557
Datagrams Forwarded/sec is the rate, in incidents per second, at which attemps were made to find routes to forward input datagrams their final destination, because the local server was not the final IP destination. In servers that do not act as IP Gateways, this rate includes only packets that were source-routed via this entity, where the source-route option processing was successful.
559
Datagrams Received Unknown Protocol is the number of locally-addressed datagrams that were successfully received but were discarded because of an unknown or unsupported protocol.
561
Datagrams Received Discarded is the number of input IP datagrams that were discarded even though problems prevented their continued processing (for example, lack of buffer space). This counter does not include any datagrams discarded while awaiting re-assembly.
563
Datagrams Received Delivered/sec is the rate, in incidents per second, at which input datagrams were successfully delivered to IP user-protocols, including Internet Control Message Protocol (ICMP).
565
Datagrams Sent/sec is the rate, in incidents per second, at which IP datagrams were supplied for transmission by local IP user-protocols (including ICMP). This counter does not include any datagrams counted in Datagrams Forwarded/sec. Datagrams Sent/sec is a subset of Datagrams/sec.
567
Datagrams Outbound Discarded is the number of output IP datagrams that were discarded even though no problems were encountered to prevent their transmission to their destination (for example, lack of buffer space). This counter includes datagrams counted in Datagrams Forwarded/sec that meet this criterion.
569
Datagrams Outbound No Route is the number of IP datagrams that were discarded because no route could be found to transmit them to their destination. This counter includes any packets counted in Datagrams Forwarded/sec that meet this `no route' criterion.
571
Fragments Received/sec is the rate, in incidents per second, at which IP fragments that need to be reassembled at this entity are received.
573
Fragments Re-assembled/sec is the rate, in incidents per second, at which IP fragments were successfully reassembled.
575
Fragment Re-assembly Failures is the number of failures detected by the IP reassembly algorithm, such as time outs, errors, etc. This is not necessarily a count of discarded IP fragments since some algorithms (notably RFC 815) lose track of the number of fragments by combining them as they are received.
577
Fragmented Datagrams/sec is the rate, in incidents per second, at which datagrams are successfully fragmented.
579
Fragmentation Failures is the number of IP datagrams that were discarded because they needed to be fragmented at but could not be (for example, because the `Don't Fragment' flag was set).
581
Fragments Created/sec is the rate, in incidents per second, at which IP datagram fragments were generated as a result of fragmentation.
583
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.
585
Messages/sec is the total rate, in incidents per second, at which ICMP messages were sent and received by the entity. The rate includes messages received or sent in error.
587
Messages Received/sec is the rate, in incidents per second at which ICMP messages were received. The rate includes messages received in error.
589
Messages Received Errors is the number of ICMP messages that the entity received but had errors, such as bad ICMP checksums, bad length, etc.
591
Received Destination Unreachable is the number of ICMP Destination Unreachable messages received.
593
Received Time Exceeded is the number of ICMP Time Exceeded messages received.
595
Received Parameter Problem is the number of ICMP Parameter Problem messages received.
597
Received Source Quench is the number of ICMP Source Quench messages received.
599
Received Redirect/sec is the rate, in incidents per second, at which ICMP Redirect messages were received.
601
Received Echo/sec is the rate, in incidents per second, at which ICMP Echo messages were received.
603
Received Echo Reply/sec is the rate, in incidents per second, at which ICMP Echo Reply messages were received.
605
Received Timestamp/sec is the rate, in incidents per second at which ICMP Timestamp Request messages were received.
607
Received Timestamp Reply/sec is the rate of ICMP Timestamp Reply messages received.
609
Received Address Mask is the number of ICMP Address Mask Request messages received.
611
Received Address Mask Reply is the number of ICMP Address Mask Reply messages received.
613
Messages Sent/sec is the rate, in incidents per second, at which the server attempted to send. The rate includes those messages sent in error.
615
Messages Outbound Errors is the number of ICMP messages that were not send due to problems within ICMP, such as lack of buffers. This value does not include errors discovered outside the ICMP layer, such as those recording the failure of IP to route the resultant datagram. In some implementations, none of the error types are included in the value of this counter.
617
Sent Destination Unreachable is the number of ICMP Destination Unreachable messages sent.
619
Sent Time Exceeded is the number of ICMP Time Exceeded messages sent.
621
Sent Parameter Problem is the number of ICMP Parameter Problem messages sent.
623
Sent Source Quench is the number of ICMP Source Quench messages sent.
625
Sent Redirect/sec is the rate, in incidents per second, at which ICMP Redirect messages were sent.
627
Sent Echo/sec is the rate of ICMP Echo messages sent.
629
Sent Echo Reply/sec is the rate, in incidents per second, at which ICMP Echo Reply messages were sent.
631
Sent Timestamp/sec is the rate, in incidents per second, at which ICMP Timestamp Request messages were sent.
633
Sent Timestamp Reply/sec is the rate, in incidents per second, at which ICMP Timestamp Reply messages were sent.
635
Sent Address Mask is the number of ICMP Address Mask Request messages sent.
637
Sent Address Mask Reply is the number of ICMP Address Mask Reply messages sent.
639
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.
641
Segments/sec is the rate at which TCP segments are sent or received using the TCP protocol.
643
Connections Established is the number of TCP connections for which the current state is either ESTABLISHED or CLOSE-WAIT.
645
Connections Active is the number of times TCP connections have made a direct transition to the SYN-SENT state from the CLOSED state. In other words, it shows a number of connections which are initiated by the local computer. The value is a cumulative total.
647
Connections Passive is the number of times TCP connections have made a direct transition to the SYN-RCVD state from the LISTEN state. In other words, it shows a number of connections to the local computer, which are initiated by remote computers. The value is a cumulative total.
649
Connection Failures is the number of times TCP connections have made a direct transition to the CLOSED state from the SYN-SENT state or the SYN-RCVD state, plus the number of times TCP connections have made a direct transition to the LISTEN state from the SYN-RCVD state.
651
Connections Reset is the number of times TCP connections have made a direct transition to the CLOSED state from either the ESTABLISHED state or the CLOSE-WAIT state.
653
Segments Received/sec is the rate at which segments are received, including those received in error. This count includes segments received on currently established connections.
655
Segments Sent/sec is the rate at which segments are sent, including those on current connections, but excluding those containing only retransmitted bytes.
657
Segments Retransmitted/sec is the rate at which segments are retransmitted, that is, segments transmitted containing one or more previously transmitted bytes.
659
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.
661
Datagrams/sec is the rate at which UDP datagrams are sent or received by the entity.
663
Datagrams Received/sec is the rate at which UDP datagrams are delivered to UDP users.
665
Datagrams No Port/sec is the rate of received UDP datagrams for which there was no application at the destination port.
667
Datagrams Received Errors is the number of received UDP datagrams that could not be delivered for reasons other than the lack of an application at the destination port.
669
Datagrams Sent/sec is the rate at which UDP datagrams are sent from the entity.
671
Disk Storage device statistics from the foreign computer
673
The number of allocation failures reported by the disk storage device
675
System Up Time is the elapsed time (in seconds) that the computer has been running since it was last started. This counter displays the difference between the start time and the current time.
677
The current number of system handles in use.
679
Free System Page Table Entries is the number of page table entries not currently in used by the system. This counter displays the last observed value only; it is not an average.
681
The number of threads currently active in this process. An instruction is the basic unit of execution in a processor, and a thread is the object that executes instructions. Every running process has at least one thread.
683
The current base priority of this process. Threads within a process can raise and lower their own base priority relative to the process' base priority.
685
The total elapsed time, in seconds, that this process has been running.
687
Alignment Fixups/sec is the rate, in incidents per seconds, at alignment faults were fixed by the system.
689
Exception Dispatches/sec is the rate, in incidents per second, at which exceptions were dispatched by the system.
691
Floating Emulations/sec is the rate of floating emulations performed by the system. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
693
Logon/sec is the rate of all server logons.
695
The current dynamic priority of this thread. The system can raise the thread's dynamic priority above the base priority if the thread is handling user input, or lower it towards the base priority if the thread becomes compute bound.
697
The current base priority of this thread. The system can raise the thread's dynamic priority above the base priority if the thread is handling user input, or lower it towards the base priority if the thread becomes compute bound.
699
The total elapsed time (in seconds) this thread has been running.
701
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.
703
The amount of the Page File instance in use in percent. See also Process\\Page File Bytes.
705
The peak usage of the Page File instance in percent. See also Process\\Page File Bytes Peak.
707
Starting virtual address for this thread.
709
Current User Program Counter for this thread.
711
Mapped Space is virtual memory that has been mapped to a specific virtual address (or range of virtual addresses) in the process' virtual address space. No Access protection prevents a process from writing to or reading from these pages and will generate an access violation if either is attempted.
713
Mapped Space is virtual memory that has been mapped to a specific virtual address (or range of virtual addresses) in the process' virtual address space. Read Only protection prevents the contents of these pages from being modified. Any attempts to write or modify these pages will generate an access violation.
715
Mapped Space is virtual memory that has been mapped to a specific virtual address (or range of virtual addresses) in the process' virtual address space. Read/Write protection allows a process to read, modify and write to these pages.
717
Mapped Space is virtual memory that has been mapped to a specific virtual address (or range of virtual addresses) in the process' virtual address space. Write Copy protection is used when memory is shared for reading but not for writing. When processes are reading this memory, they can share the same memory, however, when a sharing process wants to have write access to this shared memory, a copy of that memory is made.
719
Mapped Space is virtual memory that has been mapped to a specific virtual address (or range of virtual addresses) in the process' virtual address space. Executable memory is memory that can be executed by programs, but cannot be read or written. This type of protection is not supported by all processor types.
721
Mapped Space is virtual memory that has been mapped to a specific virtual address (or range of virtual addresses) in the process' virtual address space. Execute/Read Only memory is memory that can be executed as well as read.
723
Mapped Space is virtual memory that has been mapped to a specific virtual address (or range of virtual addresses) in the process' virtual address space. Execute/Read/Write memory is memory that can be executed by programs as well as read and modified.
725
Mapped Space is virtual memory that has been mapped to a specific virtual address (or range of virtual addresses) in the process' virtual address space. Execute Write Copy is memory that can be executed by programs as well as read and written. This type of protection is used when memory needs to be shared between processes. If the sharing processes only read the memory, then they will all use the same memory. If a sharing process desires write access, then a copy of this memory will be made for that process.
727
Reserved Space is virtual memory that has been reserved for future use by a process, but has not been mapped or committed. No Access protection prevents a process from writing to or reading from these pages and will generate an access violation if either is attempted.
729
Reserved Space is virtual memory that has been reserved for future use by a process, but has not been mapped or committed. Read Only protection prevents the contents of these pages from being modified. Any attempts to write or modify these pages will generate an access violation.
731
Reserved Space is virtual memory that has been reserved for future use by a process, but has not been mapped or committed. Read/Write protection allows a process to read, modify and write to these pages.
733
Reserved Space is virtual memory that has been reserved for future use by a process, but has not been mapped or committed. Write Copy protection is used when memory is shared for reading but not for writing. When processes are reading this memory, they can share the same memory, however, when a sharing process wants to have read/write access to this shared memory, a copy of that memory is made.
735
Reserved Space is virtual memory that has been reserved for future use by a process, but has not been mapped or committed. Executable memory is memory that can be executed by programs, but cannot be read or written. This type of protection is not supported by all processor types.
737
Reserved Space is virtual memory that has been reserved for future use by a process, but has not been mapped or committed. Execute/Read Only memory is memory that can be executed as well as read.
739
Reserved Space is virtual memory that has been reserved for future use by a process, but has not been mapped or committed. Execute/Read/Write memory is memory that can be executed by programs as well as read and modified.
741
The Image performance object consists of counters that monitor the virtual address usage of images executed by processes on the computer.
743
Reserved Space is virtual memory that has been reserved for future use by a process, but has not been mapped or committed. Execute Write Copy is memory that can be executed by programs as well as read and written. This type of protection is used when memory needs to be shared between processes. If the sharing processes only read the memory, then they will all use the same memory. If a sharing process desires write access, then a copy of this memory will be made for that process.
745
Unassigned Space is mapped and committed virtual memory in use by the process that is not attributable to any particular image being executed by that process. No Access protection prevents a process from writing to or reading from these pages and will generate an access violation if either is attempted.
747
Unassigned Space is mapped and committed virtual memory in use by the process that is not attributable to any particular image being executed by that process. Read Only protection prevents the contents of these pages from being modified. Any attempts to write or modify these pages will generate an access violation.
749
Unassigned Space is mapped and committed virtual memory in use by the process that is not attributable to any particular image being executed by that process. Read/Write protection allows a process to read, modify and write to these pages.
751
Unassigned Space is mapped and committed virtual memory in use by the process that is not attributable to any particular image being executed by that process. Write Copy protection is used when memory is shared for reading but not for writing. When processes are reading this memory, they can share the same memory, however, when a sharing process wants to have read/write access to this shared memory, a copy of that memory is made for writing to.
753
Unassigned Space is mapped and committed virtual memory in use by the process that is not attributable to any particular image being executed by that process. Executable memory is memory that can be executed by programs, but cannot be read or written. This type of protection is not supported by all processor types.
755
Unassigned Space is mapped and committed virtual memory in use by the process that is not attributable to any particular image being executed by that process. Execute/Read Only memory is memory that can be executed as well as read.
757
Unassigned Space is mapped and committed virtual memory in use by the process that is not attributable to any particular image being executed by that process. Execute/Read/Write memory is memory that can be executed by programs as well as read and written.
759
Unassigned Space is mapped and committed virtual memory in use by the process that is not attributable to any particular image being executed by that process. Execute Write Copy is memory that can be executed by programs as well as read and written. This type of protection is used when memory needs to be shared between processes. If the sharing processes only read the memory, then they will all use the same memory. If a sharing process desires write access, then a copy of this memory will be made for that process.
761
Image Space is the virtual address space in use by the images being executed by the process. This is the sum of all the address space with this protection allocated by images run by the selected process No Access protection prevents a process from writing to or reading from these pages and will generate an access violation if either is attempted.
763
Image Space is the virtual address space in use by the images being executed by the process. This is the sum of all the address space with this protection allocated by images run by the selected process Read Only protection prevents the contents of these pages from being modified. Any attempts to write or modify these pages will generate an access violation.
765
Image Space is the virtual address space in use by the images being executed by the process. This is the sum of all the address space with this protection allocated by images run by the selected process Read/Write protection allows a process to read, modify and write to these pages.
767
Image Space is the virtual address space in use by the images being executed by the process. This is the sum of all the address space with this protection allocated by images run by the selected process Write Copy protection is used when memory is shared for reading but not for writing. When processes are reading this memory, they can share the same memory, however, when a sharing process wants to have read/write access to this shared memory, a copy of that memory is made for writing to.
769
Image Space is the virtual address space in use by the images being executed by the process. This is the sum of all the address space with this protection allocated by images run by the selected process Executable memory is memory that can be executed by programs, but cannot be read or written. This type of protection is not supported by all processor types.
771
Image Space is the virtual address space in use by the images being executed by the process. This is the sum of all the address space with this protection allocated by images run by the selected process Execute/Read-Only memory is memory that can be executed as well as read.
773
Image Space is the virtual address space in use by the images being executed by the process. This is the sum of all the address space with this protection allocated by images run by the selected process Execute/Read/Write memory is memory that can be executed by programs as well as read and written and modified.
775
Image Space is the virtual address space in use by the images being executed by the process. This is the sum of all the address space with this protection allocated by images run by the selected process Execute Write Copy is memory that can be executed by programs as well as read and written. This type of protection is used when memory needs to be shared between processes. If the sharing processes only read the memory, then they will all use the same memory. If a sharing process desires write access, then a copy of this memory will be made for that process.
777
Bytes Image Reserved is the sum of all virtual memory reserved by images within this process.
779
Bytes Image Free is the amount of virtual address space that is not in use or reserved by images within this process.
781
Bytes Reserved is the total amount of virtual memory reserved for future use by this process.
783
Bytes Free is the total unused virtual address space of this process.
785
ID Process is the unique identifier of this process. ID Process numbers are reused, so they only identify a process for the lifetime of that process.
787
The Process Address Space performance object consists of counters that monitor memory allocation and use for a selected process.
789
Image Space is the virtual address space in use by the selected image with this protection. No Access protection prevents a process from writing or reading these pages and will generate an access violation if either is attempted.
791
Image Space is the virtual address space in use by the selected image with this protection. Read Only protection prevents the contents of these pages from being modified. Any attempts to write or modify these pages will generate an access violation.
793
Image Space is the virtual address space in use by the selected image with this protection. Read/Write protection allows a process to read, modify and write to these pages.
795
Image Space is the virtual address space in use by the selected image with this protection. Write Copy protection is used when memory is shared for reading but not for writing. When processes are reading this memory, they can share the same memory, however, when a sharing process wants to have read/write access to this shared memory, a copy of that memory is made for writing to.
797
Image Space is the virtual address space in use by the selected image with this protection. Executable memory is memory that can be executed by programs, but cannot be read or written. This type of protection is not supported by all processor types.
799
Image Space is the virtual address space in use by the selected image with this protection. Execute/Read Only memory is memory that can be executed as well as read.
801
Image Space is the virtual address space in use by the selected image with this protection. Execute/Read/Write memory is memory that can be executed by programs as well as read and written.
803
Image Space is the virtual address space in use by the selected image with this protection. Execute Write Copy is memory that can be executed by programs as well as read and written. This type of protection is used when memory needs to be shared between processes. If the sharing processes only read the memory, then they will all use the same memory. If a sharing process desires write access, then a copy of this memory will be made for that process.
805
ID Thread is the unique identifier of this thread. ID Thread numbers are reused, so they only identify a thread for the lifetime of that thread.
807
Mailslot Opens Failed/sec indicates the rate at which mailslot messages to be delivered to mailslots that are not present are received by this workstation.
809
Duplicate Master Announcements indicates the number of times that the master browser has detected another master browser on the same domain.
811
Illegal Datagrams/sec is the rate at which incorrectly formatted datagrams have been received by the workstation.
813
Announcements Total/sec is the sum of Announcements Server/sec and Announcements Domain/sec.
815
Enumerations Total/sec is the rate at which browse requests have been processed by this workstation. This is the sum of Enumerations Server/sec, Enumerations Domain/sec, and Enumerations Other/sec.
817
The Thread Details performance object consists of counters that measure aspects of thread behavior that are difficult or time-consuming or collect. These counters are distinguished from those in the Thread object by their high overhead.
819
Cache Bytes is the sum of the Memory\\System Cache Resident Bytes, Memory\\System Driver Resident Bytes, Memory\\System Code Resident Bytes, and Memory\\Pool Paged Resident Bytes counters. This counter displays the last observed value only; it is not an average.
821
Cache Bytes Peak is the maximum number of bytes used by the file system cache since the system was last restarted. This might be larger than the current size of the cache. This counter displays the last observed value only; it is not an average.
823
Pages Input/sec is the rate at which pages are read from disk to resolve hard page faults. Hard page faults occur when a process refers to a page in virtual memory that is not in its working set or elsewhere in physical memory, and must be retrieved from disk. When a page is faulted, the system tries to read multiple contiguous pages into memory to maximize the benefit of the read operation. Compare the value of Memory\\Pages Input/sec to the value of Memory\\Page Reads/sec to determine the average number of pages read into memory during each read operation.
825
Transition Pages RePurposed is the rate at which the number of transition cache pages were reused for a different purpose. These pages would have otherwise remained in the page cache to provide a (fast) soft fault (instead of retrieving it from backing store) in the event the page was accessed in the future. Note these pages can contain private or sharable memory.
873
The number of bytes transmitted total for this connection.
875
The number of bytes received total for this connection.
877
The number of data frames transmitted total for this connection.
879
The number of data frames received total for this connection.
881
The compression ratio for bytes being transmitted.
883
The compression ratio for bytes being received.
885
The total number of CRC Errors for this connection. CRC Errors occur when the frame received contains erroneous data.
887
The total number of Timeout Errors for this connection. Timeout Errors occur when an expected is not received in time.
889
The total number of Serial Overrun Errors for this connection. Serial Overrun Errors occur when the hardware cannot handle the rate at which data is received.
891
The total number of Alignment Errors for this connection. Alignment Errors occur when a byte received is different from the byte expected.
893
The total number of Buffer Overrun Errors for this connection. Buffer Overrun Errors when the software cannot handle the rate at which data is received.
895
The total number of CRC, Timeout, Serial Overrun, Alignment, and Buffer Overrun Errors for this connection.
897
The number of bytes transmitted per second.
899
The number of bytes received per second.
901
The number of frames transmitted per second.
903
The number of frames received per second.
905
The total number of CRC, Timeout, Serial Overrun, Alignment, and Buffer Overrun Errors per second.
909
The total number of Remote Access connections.
921
The WINS Server performance object consists of counters that monitor communications using the WINS Server service.
923
Unique Registrations/sec is the rate at which unique registration are received by the WINS server.
925
Group Registrations/sec is the rate at which group registration are received by the WINS server.
927
Total Number of Registrations/sec is the sum of the Unique and Group registrations per sec. This is the total rate at which registration are received by the WINS server.
929
Unique Renewals/sec is the rate at which unique renewals are received by the WINS server.
931
Group Renewals/sec is the rate at which group renewals are received by the WINS server.
933
Total Number of Renewals/sec is the sum of the Unique and Group renewals per sec. This is the total rate at which renewals are received by the WINS server.
935
Total Number of Releases/sec is the rate at which releases are received by the WINS server.
937
Total Number of Queries/sec is the rate at which queries are received by the WINS server.
939
Unique Conflicts/sec is the rate at which unique registrations/renewals received by the WINS server resulted in conflicts with records in the database.
941
Group Conflicts/sec is the rate at which group registration received by the WINS server resulted in conflicts with records in the database.
943
Total Number of Conflicts/sec is the sum of the Unique and Group conflicts per sec. This is the total rate at which conflicts were seen by the WINS server.
945
Total Number of Successful Releases/sec
947
Total Number of Failed Releases/sec
949
Total Number of Successful Queries/sec
951
Total Number of Failed Queries/sec
953
The total number of handles currently open by this process. This number is equal to the sum of the handles currently open by each thread in this process.
1001
Services for Macintosh AFP File Server.
1003
The maximum amount of paged memory resources used by the MacFile Server.
1005
The current amount of paged memory resources used by the MacFile Server.
1007
The maximum amount of nonpaged memory resources use by the MacFile Server.
1009
The current amount of nonpaged memory resources used by the MacFile Server.
1011
The number of sessions currently connected to the MacFile server. Indicates current server activity.
1013
The maximum number of sessions connected at one time to the MacFile server. Indicates usage level of server.
1015
The number of internal files currently open in the MacFile server. This count does not include files opened on behalf of Macintosh clients.
1017
The maximum number of internal files open at one time in the MacFile server. This count does not include files opened on behalf of Macintosh clients.
1019
The number of failed logon attempts to the MacFile server. Can indicate whether password guessing programs are being used to crack the security on the server.
1021
The number of bytes read from disk per second.
1023
The number of bytes written to disk per second.
1025
The number of bytes received from the network per second. Indicates how busy the server is.
1027
The number of bytes sent on the network per second. Indicates how busy the server is.
1029
The number of outstanding work items waiting to be processed.
1031
The maximum number of outstanding work items waiting at one time.
1033
The current number of threads used by MacFile server. Indicates how busy the server is.
1035
The maximum number of threads used by MacFile server. Indicates peak usage level of server.
1051
AppleTalk Protocol
1053
Number of packets received per second by Appletalk on this port.
1055
Number of packets sent per second by Appletalk on this port.
1057
Number of bytes received per second by Appletalk on this port.
1059
Number of bytes sent per second by Appletalk on this port.
1061
Average time in milliseconds to process a DDP packet on this port.
1063
Number of DDP packets per second received by Appletalk on this port.
1065
Average time in milliseconds to process an AARP packet on this port.
1067
Number of AARP packets per second received by Appletalk on this port.
1069
Average time in milliseconds to process an ATP packet on this port.
1071
Number of ATP packets per second received by Appletalk on this port.
1073
Average time in milliseconds to process an NBP packet on this port.
1075
Number of NBP packets per second received by Appletalk on this port.
1077
Average time in milliseconds to process a ZIP packet on this port.
1079
Number of ZIP packets per second received by Appletalk on this port.
1081
Average time in milliseconds to process an RTMP packet on this port.
1083
Number of RTMP packets per second received by Appletalk on this port.
1085
Number of ATP requests retransmitted on this port.
1087
Number of ATP release timers that have expired on this port.
1089
Number of ATP Exactly-once transaction responses per second on this port.
1091
Number of ATP At-least-once transaction responses per second on this port.
1093
Number of ATP transaction release packets per second received on this port.
1095
The current amount of nonpaged memory resources used by AppleTalk.
1097
Number of packets routed in on this port.
1099
Number of packets dropped due to resource limitations on this port.
1101
Number of ATP requests retransmitted to this port.
1103
Number of packets routed out on this port.
1111
Provides Network Statistics for the local network segment via the Network Monitor Service.
1113
The total number of frames received per second on this network segment.
1115
The number of bytes received per second on this network segment.
1117
The number of Broadcast frames received per second on this network segment.
1119
The number of Multicast frames received per second on this network segment.
1121
Percentage of network bandwidth in use on this network segment.
1125
Percentage of network bandwidth which is made up of broadcast traffic on this network segment.
1127
Percentage of network bandwidth which is made up of multicast traffic on this network segment.
1151
The Telephony System
1153
The number of telephone lines serviced by this computer.
1155
The number of telephone devices serviced by this computer.
1157
The number of telephone lines serviced by this computer that are currently active.
1159
The number of telephone devices that are currently being monitored.
1161
The rate of outgoing calls made by this computer.
1163
The rate of incoming calls answered by this computer.
1165
The number of applications that are currently using telephony services.
1167
Current outgoing calls being serviced by this computer.
1169
Current incoming calls being serviced by this computer.
1233
Packet Burst Read NCP Count/sec is the rate of NetWare Core Protocol requests for Packet Burst Read. Packet Burst is a windowing protocol that improves performance.
1235
Packet Burst Read Timeouts/sec is the rate the NetWare Service needs to retransmit a Burst Read Request because the NetWare server took too long to respond.
1237
Packet Burst Write NCP Count/sec is the rate of NetWare Core Protocol requests for Packet Burst Write. Packet Burst is a windowing protocol that improves performance.
1239
Packet Burst Write Timeouts/sec is the rate the NetWare Service needs to retransmit a Burst Write Request because the NetWare server took too long to respond.
1241
Packet Burst IO/sec is the sum of Packet Burst Read NCPs/sec and Packet Burst Write NCPs/sec.
1261
Logon Total includes all interactive logons, network logons, service logons, successful logon, and failed logons since the machine is last rebooted.
1301
The Server Work Queues performance object consists of counters that monitor the length of the queues and objects in the queues.
1303
Queue Length is the current length of the server work queue for this CPU. A sustained queue length greater than four might indicate processor congestion. This is an instantaneous count, not an average over time.
1305
Active Threads is the number of threads currently working on a request from the server client for this CPU. The system keeps this number as low as possible to minimize unnecessary context switching. This is an instantaneous count for the CPU, not an average over time.
1307
Available Threads is the number of server threads on this CPU not currently working on requests from a client. The server dynamically adjusts the number of threads to maximize server performance.
1309
Every request from a client is represented in the server as a 'work item,' and the server maintains a pool of available work items per CPU to speed processing. This is the instantaneous number of available work items for this CPU. A sustained near-zero value indicates the need to increase the MinFreeWorkItems registry value for the Server service. This value will always be 0 in the Blocking Queue instance.
1311
Every request from a client is represented in the server as a 'work item,' and the server maintains a pool of available work items per CPU to speed processing. When a CPU runs out of work items, it borrows a free work item from another CPU. An increasing value of this running counter might indicate the need to increase the 'MaxWorkItems' or 'MinFreeWorkItems' registry values for the Server service. This value will always be 0 in the Blocking Queue instance.
1313
Every request from a client is represented in the server as a 'work item,' and the server maintains a pool of available work items per CPU to speed processing. A sustained value greater than zero indicates the need to increase the 'MaxWorkItems' registry value for the Server service. This value will always be 0 in the Blocking Queue instance.
1315
Current Clients is the instantaneous count of the clients being serviced by this CPU. The server actively balances the client load across all of the CPU's in the system. This value will always be 0 in the Blocking Queue instance.
1317
The rate at which the Server is receiving bytes from the network clients on this CPU. This value is a measure of how busy the Server is.
1319
The rate at which the Server is sending bytes to the network clients on this CPU. This value is a measure of how busy the Server is.
1321
The rate at which the Server is sending and receiving bytes with the network clients on this CPU. This value is a measure of how busy the Server is.
1323
Read Operations/sec is the rate the server is performing file read operations for the clients on this CPU. This value is a measure of how busy the Server is. This value will always be 0 in the Blocking Queue instance.
1325
Read Bytes/sec is the rate the server is reading data from files for the clients on this CPU. This value is a measure of how busy the Server is.
1327
Write Operations/sec is the rate the server is performing file write operations for the clients on this CPU. This value is a measure of how busy the Server is. This value will always be 0 in the Blocking Queue instance.
1329
Write Bytes/sec is the rate the server is writing data to files for the clients on this CPU. This value is a measure of how busy the Server is.
1331
Total Bytes/sec is the rate the Server is reading and writing data to and from the files for the clients on this CPU. This value is a measure of how busy the Server is.
1333
Total Operations/sec is the rate the Server is performing file read and file write operations for the clients on this CPU. This value is a measure of how busy the Server is. This value will always be 0 in the Blocking Queue instance.
1335
DPCs Queued/sec is the average rate, in incidents per second, at which deferred procedure calls (DPCs) were added to the processor's DPC queue. DPCs are interrupts that run at a lower priority than standard interrupts. Each processor has its own DPC queue. This counter measures the rate that DPCs are added to the queue, not the number of DPCs in the queue. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
1337
DPC Rate is the rate at which deferred procedure calls (DPCs) were added to the processors DPC queues between the timer ticks of the processor clock. DPCs are interrupts that run at alower priority than standard interrupts. Each processor has its own DPC queue. This counter measures the rate that DPCs were added to the queue, not the number of DPCs in the queue. This counter displays the last observed value only; it is not an average.
1343
Total DPCs Queued/sec is the combined rate at which deferred procedure calls (DPCs) are added to the DPC queue of all processors on the computer. (DPCs are interrupts that run at a lower priority than standard interrupts). Each processor has its own DPC queue. This counter measures the rate at which DPCs are added to the queue, not the number of DPCs in the queue. It is the sum of Processor: DPCs Queued/sec for all processors on the computer, divided by the number of processors. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
1345
Total DPC Rate is the combined rate at which deferred procedure calls (DPCs) are added to the DPC queues of all processors between timer ticks of each processor's system clock. (DPCs are interrupts that run at a lower priority than standard interrupts). Each processor has its own DPC queue. This counter measures the rate at which DPCs are added to the queue, not the number of DPCs in the queue. It is the sum of Processor: DPC Rate for all processors on the computer, divided by the number of processors. This counter displays the last observed value only; it is not an average.
1351
% Registry Quota In Use is the percentage of the Total Registry Quota Allowed that is currently being used by the system. This counter displays the current percentage value only; it is not an average.
1361
Counters that indicate the status of local and system Very Large memory allocations.
1363
VLM % Virtual Size In Use
1365
Current size of the process VLM Virtual memory space in bytes.
1367
The peak size of the process VLM virtual memory space in bytes. This value indicates the maximum size of the process VLM virtual memory since the process started.
1369
The current size of the process VLM virtual memory space in bytes that may be allocated. Note that the maximum allocation allowed may be smaller than this value due to fragmentation of the memory space.
1371
The current size of committed VLM memory space for the current process in bytes.
1373
The peak size of the committed VLM memory space in bytes for the current process since the process started.
1375
The current size of all committed VLM memory space in bytes for the system.
1377
The peak size of all committed VLM memory space in bytes since the system was started.
1379
The current size of all committed shared VLM memory space in bytes for the system.
1381
Available KBytes is the amount of physical memory, in Kilobytes, immediately available for allocation to a process or for system use. It is equal to the sum of memory assigned to the standby (cached), free and zero page lists. For a full explanation of the memory manager, refer to MSDN and/or the System Performance and Troubleshooting Guide chapter in the Windows Server 2003 Resource Kit.
1383
Available MBytes is the amount of physical memory, in Megabytes, immediately available for allocation to a process or for system use. It is equal to the sum of memory assigned to the standby (cached), free and zero page lists. For a full explanation of the memory manager, refer to MSDN and/or the System Performance and Troubleshooting Guide chapter in the Windows Server 2003 Resource Kit.
1401
Avg. Disk Queue Length is the average number of both read and write requests that were queued for the selected disk during the sample interval.
1403
Avg. Disk Read Queue Length is the average number of read requests that were queued for the selected disk during the sample interval.
1405
Avg. Disk Write Queue Length is the average number of write requests that were queued for the selected disk during the sample interval.
1407
% Committed Bytes In Use is the ratio of Memory\\Committed Bytes to the Memory\\Commit Limit. Committed memory is the physical memory in use for which space has been reserved in the paging file should it need to be written to disk. The commit limit is determined by the size of the paging file. If the paging file is enlarged, the commit limit increases, and the ratio is reduced). This counter displays the current percentage value only; it is not an average.
1409
The Full Image performance object consists of counters that monitor the virtual address usage of images executed by processes on the computer. Full Image counters are the same counters as contained in Image object with the only difference being the instance name. In the Full Image object, the instance name includes the full file path name of the loaded modules, while in the Image object only the filename is displayed.
1411
The Creating Process ID value is the Process ID of the process that created the process. The creating process may have terminated, so this value may no longer identify a running process.
1413
The rate at which the process is issuing read I/O operations. This counter counts all I/O activity generated by the process to include file, network and device I/Os.
1415
The rate at which the process is issuing write I/O operations. This counter counts all I/O activity generated by the process to include file, network and device I/Os.
1417
The rate at which the process is issuing read and write I/O operations. This counter counts all I/O activity generated by the process to include file, network and device I/Os.
1419
The rate at which the process is issuing I/O operations that are neither read nor write operations (for example, a control function). This counter counts all I/O activity generated by the process to include file, network and device I/Os.
1421
The rate at which the process is reading bytes from I/O operations. This counter counts all I/O activity generated by the process to include file, network and device I/Os.
1423
The rate at which the process is writing bytes to I/O operations. This counter counts all I/O activity generated by the process to include file, network and device I/Os.
1425
The rate at which the process is reading and writing bytes in I/O operations. This counter counts all I/O activity generated by the process to include file, network and device I/Os.
1427
The rate at which the process is issuing bytes to I/O operations that do not involve data such as control operations. This counter counts all I/O activity generated by the process to include file, network and device I/Os.
1451
Displays performance statistics about a Print Queue.
1453
Total number of jobs printed on a print queue since the last restart.
1455
Number of bytes per second printed on a print queue.
1457
Total number of pages printed through GDI on a print queue since the last restart.
1459
Current number of jobs in a print queue.
1461
Current number of references (open handles) to this printer.
1463
Peak number of references (open handles) to this printer.
1465
Current number of spooling jobs in a print queue.
1467
Maximum number of spooling jobs in a print queue since last restart.
1469
Total number of out of paper errors in a print queue since the last restart.
1471
Total number of printer not ready errors in a print queue since the last restart.
1473
Total number of job errors in a print queue since last restart.
1475
Total number of calls from browse clients to this print server to request network browse lists since last restart.
1477
Total number of calls from other print servers to add shared network printers to this server since last restart.
1479
Working Set - Private displays the size of the working set, in bytes, that is use for this process only and not shared nor sharable by other processes.
1481
Working Set - Shared displays the size of the working set, in bytes, that is sharable and may be used by other processes. Because a portion of a process' working set is shareable, does not necessarily mean that other processes are using it.
1483
% Idle Time reports the percentage of time during the sample interval that the disk was idle.
1485
Split IO/Sec reports the rate at which I/Os to the disk were split into multiple I/Os. A split I/O may result from requesting data of a size that is too large to fit into a single I/O or that the disk is fragmented.
1501
Reports the accounting and processor usage data collected by each active named Job object.
1503
Current % Processor Time shows the percentage of the sample interval that the processes in the Job object spent executing code.
1505
Current % User mode Time shows the percentage of the sample interval that the processes in the Job object spent executing code in user mode.
1507
Current % Kernel mode Time shows the percentage of the sample interval that the processes in the Job object spent executing code in kernel or privileged mode.
1509
This Period mSec - Processor shows the time, in milliseconds, of processor time used by all the processes in the Job object, including those that have terminated or that are no longer associated with the Job object, since a time limit on the Job was established.
1511
This Period mSec - User mode shows the time, in milliseconds, of user mode processor time used by all the processes in the Job object, including those that have terminated or that are no longer associated with the Job object, since a time limit on the Job was established.
1513
This Period mSec - Kernel mode shows the time, in milliseconds, of kernel mode processor time used by all the processes in the Job object, including those that have terminated or that are no longer associated with the Job object, since a time limit on the Job was established.
1515
Pages/Sec shows the page fault rate of all the processes in the Job object.
1517
Process Count - Total shows the number of processes, both active and terminated, that are or have been associated with the Job object.
1519
Process Count - Active shows the number of processes that are currently associated with the Job object.
1521
Process Count - Terminated shows the number of processes that have been terminated because of a limit violation.
1523
Total mSec - Processor shows the time, in milliseconds, of processor time used by all the processes in the Job object, including those that have terminated or that are no longer associated with the Job object, since the Job object was created.
1525
Total mSec - User mode shows the time, in milliseconds, of user mode processor time used by all the processes in the Job object, including those that have terminated or that are no longer associated with the Job object, since the Job object was created.
1527
Total mSec - Kernel mode shows the time, in milliseconds, of kernel mode processor time used by all the processes in the Job object, including those that have terminated or that are no longer associated with the Job object, since the Job object was created.
1537
Received Packet Too Big is the number of received packets thatare larger than anticipated.
1539
Received Membership Query is the number of packets received thatquery their membership to a group.
1541
Received Membership Report is the number of packets received thatreport their membership to a group.
1543
Received Membership Reduction is the number of packets received thatcancelled their membership to a group.
1545
Received Router Solicit is the number of packets received thatsolicit the router.
1547
Received Router Advert is the number of packets received thatadvert the router.
1549
% Job object Details shows detailed performance information about the active processes that make up a Job object.
1551
Received Neighbor Solicit is the number of packets received thatsolicit a neighbor.
1553
Received Neighbor Advert is the number of packets received thatadvert a neighbor.
1555
Sent Packet Too Big is the number of sent packets thatare larger than anticipated.
1557
Sent Membership Query is the number of packets sent thatquery their membership to a group.
1559
Sent Membership Report is the number of packets sent thatreport their membership to a group.
1561
Sent Membership Reduction is the number of packets sent thatcancelled their membership to a group.
1563
Sent Router Solicit is the number of packets sent thatsolicit the router.
1565
Sent Router Advert is the number of packets sent thatadvert the router.
1567
Sent Neighbor Solicit is the number of packets sent thatsolicit a neighbor.
1569
Sent Neighbor Advert is the number of packets sent thatadvert a neighbor.
1571
These counters track authentication performance on a per second basis.
1573
This counter tracks the number of NTLM authentications processed by this computer per second.
1575
This counter tracks the number of times that clients use a ticket to authenticate to this computer per second.
1577
This counter tracks the number of Autonomous System (AS) requests that are being processed by the Key Distribution Center (KDC) per second. Clients use AS requests to obtain a ticket-granting ticket.
1579
This counter tracks the number of ticket-granting service (TGS) requests that are being processed by the Key Distribution Center (KDC) per second. Clients use these TGS requests to obtain a service ticket, which allows a client to access resources on other computers.
1581
This counter tracks the number of Secure Sockets Layer (SSL) entries that are currently stored in the secure channel (Schannel) session cache. The Schannel session cache stores information about successfully established sessions, such as SSL session IDs. Clients can use this information to reconnect to a server without performing a full SSL handshake.
1583
This counter tracks the number of Secure Sockets Layer (SSL) entries that are currently stored in the secure channel (Schannel) session cache and that are currently in use. The Schannel session cache stores information about successfully established sessions, such as SSL session IDs. Clients can use this information to reconnect to a server without performaing a full SSL handshake.
1585
This counter tracks the number of Secure Sockets Layer (SSL) full client-side handshakes that are being processed per second. During a handshake, signals are exchanged to acknowledge that communication can occur between computers or other devices.
1587
This counter tracks the number of Secure Sockets Layer (SSL) client-side reconnect handshakes that are being processed per second. Reconnect handshakes allow session keys from previous SSL sessions to be used to resume a client/server connection, and they require less memory to process than full handshakes.
1589
This counter tracks the number of Secure Sockets Layer (SSL) full server-side handshakes that are being processed per second. During a handshake, signals are exchanged to acknowledge that communication can occur between computers or other devices.
1591
This counter tracks the number of Secure Sockets Layer (SSL) server-side reconnect handshakes that are being processed per second. Reconnect handshakes allow session keys from previous SSL sessions to be used to resume a client/server connection, and they require less memory to process than full handshakes.
1593
This counter tracks the number of Digest authentications that are being processed per second.
1671
These counters track the number of security resources and handles used per process.
1673
This counter tracks the number of credential handles in use by a given process. Credential handles are handles to pre-existing credentials, such as a password, that are associated with a user and are established through a system logon.
1675
This counter tracks the number of context handles in use by a given process. Context handles are associated with security contexts established between a client application and a remote peer.
1677
Free & Zero Page List Bytes is the amount of physical memory, in bytes, that is assigned to the free and zero page lists. This memory does not contain cached data. It is immediately available for allocation to a process or for system use. For a full explanation of the memory manager, refer to MSDN and/or the System Performance and Troubleshooting Guide chapter in the Windows Server 2003 Resource Kit.
1679
Modified Page List Bytes is the amount of physical memory, in bytes, that is assigned to the modified page list. This memory contains cached data and code that is not actively in use by processes, the system and the system cache. This memory needs to be written out before it will be available for allocation to a process or for system use. For a full explanation of the memory manager, refer to MSDN and/or the System Performance and Troubleshooting Guide chapter in the Windows Server 2003 Resource Kit.
1681
Standby Cache Reserve Bytes is the amount of physical memory, in bytes, that is assigned to the reserve standby cache page lists. This memory contains cached data and code that is not actively in use by processes, the system and the system cache. It is immediately available for allocation to a process or for system use. If the system runs out of available free and zero memory, memory on lower priority standby cache page lists will be repurposed before memory on higher priority standby cache page lists. For a full explanation of the memory manager, refer to MSDN and/or the System Performance and Troubleshooting Guide chapter in the Windows Server 2003 Resource Kit.
1683
Standby Cache Normal Priority Bytes is the amount of physical memory, in bytes, that is assigned to the normal priority standby cache page lists. This memory contains cached data and code that is not actively in use by processes, the system and the system cache. It is immediately available for allocation to a process or for system use. If the system runs out of available free and zero memory, memory on lower priority standby cache page lists will be repurposed before memory on higher priority standby cache page lists. For a full explanation of the memory manager, refer to MSDN and/or the System Performance and Troubleshooting Guide chapter in the Windows Server 2003 Resource Kit.
1685
Standby Cache Core Bytes is the amount of physical memory, in bytes, that is assigned to the core standby cache page lists. This memory contains cached data and code that is not actively in use by processes, the system and the system cache. It is immediately available for allocation to a process or for system use. If the system runs out of available free and zero memory, memory on lower priority standby cache page lists will be repurposed before memory on higher priority standby cache page lists. For a full explanation of the memory manager, refer to MSDN and/or the System Performance and Troubleshooting Guide chapter in the Windows Server 2003 Resource Kit.
1747
% Idle Time is the percentage of time the processor is idle during the sample interval
1749
% C1 Time is the percentage of time the processor spends in the C1 low-power idle state. % C1 Time is a subset of the total processor idle time. C1 low-power idle state enables the processor to maintain its entire context and quickly return to the running state. Not all systems support the % C1 state.
1751
% C2 Time is the percentage of time the processor spends in the C2 low-power idle state. % C2 Time is a subset of the total processor idle time. C2 low-power idle state enables the processor to maintain the context of the system caches. The C2 power state is a lower power and higher exit latency state than C1. Not all systems support the C2 state.
1753
% C3 Time is the percentage of time the processor spends in the C3 low-power idle state. % C3 Time is a subset of the total processor idle time. When the processor is in the C3 low-power idle state it is unable to maintain the coherency of its caches. The C3 power state is a lower power and higher exit latency state than C2. Not all systems support the C3 state.
1755
C1 Transitions/sec is the rate that the CPU enters the C1 low-power idle state. The CPU enters the C1 state when it is sufficiently idle and exits this state on any interrupt. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
1757
C2 Transitions/sec is the rate that the CPU enters the C2 low-power idle state. The CPU enters the C2 state when it is sufficiently idle and exits this state on any interrupt. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
1759
C3 Transitions/sec is the rate that the CPU enters the C3 low-power idle state. The CPU enters the C3 state when it is sufficiently idle and exits this state on any interrupt. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.
1761
Heap performance counters for must used heaps
1763
Memory actively used by this heap (FreeBytes + AllocatedBytes)
1765
Total virtual address space reserved for this heap (includes uncommitted ranges)
1767
ReservedBytes minus last uncommitted range in each segment
1769
Memory on freelists in this heap (does not include uncommitted ranges or blocks in heap cache)
1771
Number of blocks on the list of free blocks >1k in size
1773
1/Average time per allocation (excluding allocs from heap cache)
1775
1/Average time per free (excluding frees to heap cache)
1777
Number of uncommitted ranges in the reserved virtual address
1779
Difference between number of allocations and frees (for leak detection)
1781
Allocations/sec from heap cache
1783
Frees/sec from heap cache
1785
Allocations/sec of size <1k bytes (including heap cache)
1787
Frees/sec of size <1k bytes (including heap cache)
1789
Allocations/sec of size 1-8k bytes
1791
Frees/sec of size 1-8k bytes
1793
Allocations/sec of size over 8k bytes
1795
Frees/sec of size over 8k bytes
1797
Allocations/sec (including from heap cache)
1799
Frees/sec (including to heap cache)
1801
Total number of blocks in the heap cache
1803
Largest number of blocks of any one size in the heap cache
1805
(FreeBytes / CommittedBytes) *100
1807
(VirtualBytes / ReservedBytes) * 100
1809
Collisions/sec on the heap lock
1847
End Marker
1849
The Telphony System
1851
The number of telephone lines serviced by this computer.
1853
The number of telephone devices serviced by this computer.
1855
the number of telephone lines serviced by this computer that are currently active.
1857
The number of telephone devices that are currently being monitored.
1859
The rate of outgoing calls made by this computer.
1861
The rate of incoming calls answered by this computer.
1863
The number of applications that are currently using telephony services.
1865
Current outgoing calls being serviced by this computer.
1867
Current incoming calls being serviced by this computer.
1869
The RAS Object Type handles individual ports of the RAS device on your system.
1871
The number of bytes transmitted total for this connection.
1873
The number of bytes received total for this connection.
1875
The number of data frames transmitted total for this connection.
1877
The number of data frames received total for this connection.
1879
The compression ratio for bytes being transmitted.
1881
The compression ratio for bytes being received.
1883
The total number of CRC Errors for this connection. CRC Errors occur when the frame received contains erroneous data.
1885
The total number of Timeout Errors for this connection. Timeout Errors occur when an expected is not received in time.
1887
The total number of Serial Overrun Errors for this connection. Serial Overrun Errors occur when the hardware cannot handle the rate at which data is received.
1889
The total number of Alignment Errors for this connection. Alignment Errors occur when a byte received is different from the byte expected.
1891
The total number of Buffer Overrun Errors for this connection. Buffer Overrun Errors when the software cannot handle the rate at which data is received.
1893
The total number of CRC, Timeout, Serial Overrun, Alignment, and Buffer Overrun Errors for this connection.
1895
The number of bytes transmitted per second.
1897
The number of bytes received per second.
1899
The number of frames transmitted per second.
1901
The number of frames received per second.
1903
The total number of CRC, Timeout, Serial Overrun, Alignment, and Buffer Overrun Errors per second.
1905
The RAS Object Type handles all combined ports of the RAS device on your system.
1907
The total number of Remote Access connections.
1909
BITS Per Job Network Utilization
1911
Estimate of Remote Server Speed (Bits/Sec)
1913
Estimate of the local netcard's speed (Bits/Sec)
1915
Estimate of most recent percent network interface utilization
1917
Estimate of the IGD's Internet connection speed (Bits/Sec)
1919
Estimate of most recent percent IGD Internet connection utilization
1921
Size of the next download block for BITS
1923
BITS download response interval (msec)
1925
Estimated bandwidth available to the remote system (Bits/sec)
2247
Database provides performance statistics for each process using the ESE high performance embedded database management system.
2249
Pages Converted/sec is the count of times per second a database page is converted from an older database format
2251
Pages Converted is the count of database pages that have been converted from an older format
2253
Records Converted/sec is the count of times per second a database record is converted from an older database format
2255
Records Converted is the count of database records that have been converted from an older format
2257
Heap Allocs/sec is the number of memory allocations from the MP Heaps per second. [Dev Only]
2259
Heap Frees/sec is the number of memory frees to the MP Heaps per second. [Dev Only]
2261
Heap Allocations is the current number of memory allocations in the MP Heaps. [Dev Only]
2263
Heap Bytes Allocated is the size of all memory allocations in the MP Heaps discounting heap managemnt overhead. [Dev Only]
2265
Page Bytes Reserved is the size of all explicitly reserved virtual address space. [Dev Only]
2267
Page Bytes Committed is the size of all explicitly committed virtual memory backing store (page file and physical memory). [Dev Only]
2269
FCB Asynchronous Scan/sec is the number of cached schema records (FCBs) scanned during asynchronous schema record cleanup. These records are scanned to age out older schema definitions. [Dev Only]
2271
FCB Asynchronous Purge/sec is the number of cached schema records (FCBs) purged during asynchronous schema record cleanup. These records are purged to age out older schema definitions. [Dev Only]
2273
FCB Asynchronous Threshold-Scan/sec is the number of cached schema records (FCBs) scanned during asynchronous schema record cleanup. Cleanup was triggered by a large number of schema records above the preferred limit. These records are aggressively scanned to age out older schema definitions. [Dev Only]
2275
FCB Asynchronous Threshold-Purge/sec is the number of cached schema records (FCBs) purged during asynchronous schema record cleanup. Cleanup was triggered by a large number of schema records above the preferred limit. These records are aggressively purged to age out older schema definitions. [Dev Only]
2277
FCB Asynchronous Purge Conflicts/sec is the number of failed purge attempts on cached schema records (FCBs) during asynchronous schema record cleanup. The purge operation failed because exclusive ownership of the schema record could not be obtained. [Dev Only]
2279
FCB Synchronous Purge/sec is the number of cached schema records (FCBs) being synchronously purged each second. [Dev Only]
2281
FCB Synchronous Purge Stalls/sec is the number of stalls encountered while waiting for exclusive ownership of cached schema records (FCBs) in order to synchronously purge them. [Dev Only]
2283
FCB Allocations Wait For Version Cleanup/sec is the number FCB allocations that must first wait for version cleanup in an attempt to free used FCBs for re-use. [Dev Only]
2285
FCB Purge On Cursor Close/sec is the number of cached schema records (FCBs) being synchronously purged when the cursor is closed (instead of leaving the schema record cached) each second. [Dev Only]
2287
FCB Cache % Hit is the percentage of schema records (FCBs) opened directly from the schema record cache. No file operations were required. [Dev Only]
2289
No text
2291
FCB Cache Stalls/sec is the number of stalls encountered while waiting for exclusive ownership of cached schema records (FCBs) in order to update their reference count. [Dev Only]
2293
FCB Cache Maximum is the absolute maximum number of the schema records (FCBs) that can exist in the cache. [Dev Only]
2295
FCB Cache Preferred is the preferred maximum number of the schema records (FCBs) that should exist in the cache. [Dev Only]
2297
FCB Cache Allocated is the number of cached schema records (FCBs) currently allocated and in use. [Dev Only]
2299
FCB Cache Available is the number of cached schema records (FCBs) currently allocated but not in use. These records will be used and/or purged as required. [Dev Only]
2301
Sessions In Use is the number of database sessions currently open for use by client threads. [Dev Only]
2303
Sessions % Used is the percentage of database sessions currently open for use by client threads. [Dev Only]
2305
No text
2307
Table Open Cache % Hit is the percentage of database tables opened using cached schema information. If this percentage is too low, the table cache size may be too small.
2309
No text
2311
Table Open Cache Hits/sec is the number of database tables opened using cached schema information per second. If this rate is too low, the table cache size may be too small.
2313
Table Open Cache Misses/sec is the number of database tables opened without using cached schema information per second. If this rate is too high, the table cache size may be too small.
2315
Table Opens/sec is the number of database tables opened per second.
2317
Log Bytes Write per second is the rate bytes are written to the log.
2319
Log Buffer Bytes Used is the amount of bytes in the log buffers that have not yet been flushed to the logs. [Dev only]
2321
Log Buffer Bytes Free is the amount of free space available in the log buffers. [Dev only]
2323
Log Threads Waiting is the number of threads waiting for their data to be written to the log in order to complete an update of the database. If this number is too high, the log may be a bottleneck.
2325
Log Checkpoint Depth represents the amount of work, in bytes, that will need to be redone or undone to the database file(s) if the process crashes. [Dev Only]
2327
Log Generation Checkpoint Depth represents the amount of work, in count of log files, that will need to be redone or undone to the database file(s) if the process crashes. [Dev Only]
2329
User Read Only Transaction Commits to Level 0/sec is the count of fully committed transactions started by the calling process that do not modify any data stored in the database engine. [Dev Only]
2331
User Read/Write Transaction Commits to Level 0/sec is the count of fully committed transactions started by the calling process that modify data stored in the database engine. [Dev Only]
2333
User Transaction Commits to Level 0/sec is the count of fully committed transactions started by the calling process that access data stored in the database engine. [Dev Only]
2335
User Read Only Transaction Rollbacks to Level 0/sec is the count of aborted transactions started by the calling process that do not modify any data stored in the database engine. [Dev Only]
2337
User Read/Write Transaction Rollbacks to Level 0/sec is the count of aborted transactions started by the calling process that modify data stored in the database engine. [Dev Only]
2339
User Transaction Rollbacks to Level 0/sec is the count of aborted transactions started by the calling process that access data stored in the database engine. [Dev Only]
2341
System Read Only Transaction Commits to Level 0/sec is the count of fully committed transactions started internally that do not modify any data stored in the database engine. [Dev Only]
2343
System Read/Write Transaction Commits to Level 0/sec is the count of fully committed transactions started internally that modify data stored in the database engine. [Dev Only]
2345
System Transaction Commits to Level 0/sec is the count of fully committed transactions started internally that access data stored in the database engine. [Dev Only]
2347
System Read Only Transaction Rollbacks to Level 0/sec is the count of aborted transactions started internally that do not modify any data stored in the database engine. [Dev Only]
2349
System Read/Write Transaction Rollbacks to Level 0/sec is the count of aborted transactions started internally that modify data stored in the database engine. [Dev Only]
2351
System Transaction Rollbacks to Level 0/sec is the count of aborted transactions started internally that access data stored in the database engine. [Dev Only]
2353
Database Page Allocation File Extension Async Consumed/sec is the rate of page allocations from a database file that must be serviced by extending the database file, but which do not stall when doing doing so. [Dev Only]
2355
Database Page Allocation File Extension Stalls/sec is the rate of page allocations from a database file that must be serviced by extending the database file and which stall when doing so. [Dev Only]
2357
Log Records/sec is the count of records written to the database log buffers per second. [Dev Only]
2359
Log Buffer Capacity Flushes/sec is the count of times the database log buffers must be flushed per second because they are full. [Dev Only]
2361
Log Buffer Commit Flushes/sec is the count of times the database log buffers must be flushed per second because a transaction is fully committing its changes. [Dev Only]
2363
Log Buffer Flushes/sec is the count of times the database log buffers must be flushed per second.
2365
Log Writes/sec is the number of times the log buffers are written to the log file(s) per second. If this number approaches the maximum write rate for the media holding the log file(s), the log may be a bottleneck.
2367
Log Record Stalls/sec is the number of log records that cannot be added to the log buffers per second because they are full. If this counter is non-zero most of the time, the log buffer size may be a bottleneck.
2369
Total number of version buckets allocated
2371
Total number of version buckets allocated for FlagDelete RCEs [Dev Only]
2373
VER Bucket Allocations Wait For Version Cleanup/sec is the number of version bucket allocations that must first wait for version cleanup in an attempt to free used version buckets for re-use. [Dev Only]
2375
Average length of bookmark in RCE [Dev Only]
2377
Number of times per second we look in the version store for a node whose version bit is set but which has no versions [Dev Only]
2379
Number of times per second a version store clean task is dispatched asynchronously to be performed [Dev Only]
2381
Number of times per second a version store clean task is performed synchronously [Dev Only]
2383
Number of times per second a version store clean task was discarded due to load concerns [Dev Only]
2385
Number of times per second a dispatched version store cleanup task fails [Dev Only]
2387
Record Inserts/sec is the rate at which records are being inserted into database tables. [Dev Only]
2389
Record Deletes/sec is the rate at which records in database tables are being flagged for deletion. [Dev Only]
2391
Record Deletes/sec is the rate at which records in database tables are being updated. [Dev Only]
2393
Record Unnecessary Replaces/sec is the rate at which updates to records in database tables are being discarded because the update did not actually modify the contents of the record. [Dev Only]
2395
Record Redundant Replaces/sec is the rate at which records in database tables are being updated with the exact same content of the original record. [Dev Only]
2397
Record Escrow-Updates/sec is the rate at which records in database tables are being escrow-updated. [Dev Only]
2399
Secondary Index Inserts/sec is the rate at which entries are being inserted into indexes of database tables. [Dev Only]
2401
Secondary Index Deletes/sec is the rate at which entries in indexes of database tables are being flagged for deletion. [Dev Only]
2403
False Index Column Updates/sec is the number of times per second an attempt was made to update an index because an update to at least one of the indexed columns was detected, only to discover that none of the indexed columns had actually changed (and therefore no index update was actually required). [Dev Only]
2405
False Tuple Index Column Updates/sec is the number of times per second an attempt was made to update a tuple index because an update to the tuple-indexed column was detected, only to discover that the column had not actually changed (and therefore no index update was actually required). [Dev Only]
2407
Record Intrinsic Long-Values Updated/sec is the rate at which intrinsic long-values are added to or replaced in records of database tables. [Dev Only]
2409
Record Separated Long-Values Added/sec is the rate at which separated long-values are normally added to records of database tables. [Dev Only]
2411
Record Separated Long-Values Forced/sec is the rate at which separated long-values are added to records of a database table because they could not be accommodated in the record itself. [Dev Only]
2413
Record Separated Long-Values All Forced/sec is the rate at which all intrinsic long-values are separated out of a record of a database table in order to accommodate updates to the record. [Dev Only]
2415
Record Separated Long-Values Reference All/sec is the rate at which a reference is added for all the separated long-values associated with a record of a database table. [Dev Only]
2417
Record Separated Long-Values Dereference All/sec is the rate at which a reference is removed for all the separated long-values associated with a record of a database table. [Dev Only]
2419
Separated Long-Value Seeks/sec is the rate at which seeks for a separated long-value in a database table are performed. [Dev Only]
2421
Separated Long-Value Retrieves/sec is the rate at which retrievals of a separated long-value in a database table are performed. [Dev Only]
2423
Separated Long-Value Creates/sec is the rate at which new separated long-values are added to a database table. [Dev Only]
2425
Separated Long-Value Updates/sec is the rate at which existing separated long-values in a database table are modified. [Dev Only]
2427
Separated Long-Value Deletes/sec is the rate at which separated long-values in a database table are flagged for deletion. [Dev Only]
2429
Separated Long-Value Copies/sec is the rate at which existing separated long-values in a database table are copied. [Dev Only]
2431
Separated Long-Value Chunk Seeks/sec is the rate at which seeks for a particular chunk of a separated long-value in a database table are performed. [Dev Only]
2433
Separated Long-Value Chunk Retrieves/sec is the rate at which retrievals of a chunk of a separated long-value in a database table are performed. [Dev Only]
2435
Separated Long-Value Chunk Appends/sec is the rate at which chunks are appended to separated long-values of database tables. [Dev Only]
2437
Separated Long-Value Chunk Replaces/sec is the rate at which existing separated long-value chunks in a database table are replaced. [Dev Only]
2439
Separated Long-Value Chunk Deletes/sec is the rate at which separated long-value chunks in a database table are flagged for deletion. [Dev Only]
2441
Separated Long-Value Chunk Copies/sec is the rate at which existing separated long-value chunks in a database table are copied. [Dev Only]
2443
B+ Tree Append Splits/sec is the count of times a page is appended to a database B+ Tree per second. [Dev Only]
2445
B+ Tree Right Splits/sec is the count of times a page is split right in a database B+ Tree per second. [Dev Only]
2447
B+ Tree Right Hotpoint Splits/sec is the count of times a page is split right in a database B+ Tree, but which is treated as an append at a local "hotpoint" in the B+ Tree per second. [Dev Only]
2449
B+ Tree Vertical Splits/sec is the count of times a page is split vertically in a database B+ Tree per second. [Dev Only]
2451
B+ Tree Splits/sec is the count of times a page is appended to or split in a database B+ Tree per second. [Dev Only]
2453
B+ Tree Empty Page Merges/sec is the count of empty pages removed from a database B+ Tree per second. [Dev Only]
2455
Right Merges/sec is the count of pages removed from a database B+ Tree per second by moving all its records to the next page to the right. [Dev Only]
2457
B+ Tree Partial Merges/sec is the count of pages where some of its records are moved to a page on the right in a database B+ Tree per second. [Dev Only]
2459
B+ Tree Merges/sec is the count of pages merged in a database B+ Tree per second. [Dev Only]
2461
B+ Tree Failed Simple Page Cleanup Attempts/sec is the rate that attempts to reclaim deleted node space on a page are unsuccessful due to a conflict when attempting to write-latch the page. The cleanup is re-tried by locking the root of the B+ Tree. [Dev Only]
2463
B+ Tree Seek Short Circuits/sec is the count of repeated seeks to the same record in a database B+ Tree that are saved by jumping directly to the cached physical location of that record per second. [Dev Only]
2465
B+ Tree Unnecessary Sibling Latches/sec is the count of sibling pages latched during a database B+ Tree Delete in the hopes of performing a merge where a merge is not possible, making that latch unnecessary. [Dev Only]
2467
B+ Tree Move Nexts/sec is the count of times the database engine moves to the next record in a B+ Tree per second. [Dev Only]
2469
B+ Tree Move Nexts (Non-Visible Nodes Skipped)/sec is the count of times the database engine skips non-visible records while attempting to move to the next visible record in a B+ Tree per second. [Dev Only]
2471
B+ Tree Move Prevs/sec is the count of times the database engine moves to the previous record in a B+ Tree per second. [Dev Only]
2473
B+ Tree Move Prevs (Non-Visible Nodes Skipped)/sec is the count of times the database engine skips non-visible records while attempting to move to the previous visible record in a B+ Tree per second. [Dev Only]
2475
B+ Tree Seeks/sec is the count of times a record is seeked to by a key in a database B+ Tree per second. [Dev Only]
2477
B+ Tree Inserts/sec is the count of times a record is inserted in a database B+ Tree per second. [Dev Only]
2479
B+ Tree Replaces/sec is the count of times a record is replaced in a database B+ Tree per second. [Dev Only]
2481
B+ Tree Flag Deletes/sec is the count of times a record is flag deleted in a database B+ Tree per second. [Dev Only]
2483
B+ Tree Deletes/sec is the count of times a record is deleted in a database B+ Tree per second. [Dev Only]
2485
B+ Tree Appends/sec is the count of times a record is appended to a database B+ Tree per second. [Dev Only]
2487
B+ Tree Creates/sec is the number of B+ Trees and their corresponding space trees (if any) created per second. This can also be viewed as the number of FDP creates per second. [Dev Only]
2489
B+ Tree Creates (Total) is the total number of B+ Trees and their corresponding space trees (if any) created. This can also be viewed as the total number of FDP creates. [Dev Only]
2491
B+ Tree Destroys/sec is the number of B+ Trees and their corresponding space trees (if any) destroyed per second. This can also be viewed as the number of FDP destroys per second. [Dev Only]
2493
B+ Tree Destroys (Total) is the total number of B+ Trees and their corresponding space trees (if any) destroyed. This can also be viewed as the total number of FDP destroys. [Dev Only]
2495
Database Cache % Hit is the percentage of database file page requests that were fulfilled by the database cache without causing a file operation. If this percentage is too low, the database cache size may be too small.
2497
No text
2499
Database Cache % Clean is the percentage of the database cache that does not contain modified data. [Dev Only]
2501
No text
2503
Database Pages Read Async/sec is the rate that pages are asynchronously read from the database file(s) into the database cache. [Dev Only]
2505
Database Pages Read Sync/sec is the rate that pages are synchronously read from the database file(s) into the database cache. [Dev Only]
2507
Database Pages Written/sec is the rate that pages are written to the database file (s) from the database cache. [Dev Only]
2509
Database Pages Transferred/sec is the rate that pages are transferred from the database file(s) to the database cache and vice versa. [Dev Only]
2511
Database Page Latches/sec is the rate that database pages are latched for access to their data. [Dev Only]
2513
Database Page Fast Latches/sec is the rate that database pages are latched for access to their data using a hint to tell the cache manager where that page might be in memory. [Dev Only]
2515
Database Page Bad Latch Hints/sec is the rate that incorrect hints to the location of a given page in the cache are given to the cache manager. These hints are used to perform fast latches. [Dev Only]
2517
Database Cache % Fast Latch is the percentage of database pages latched for access to their data using a hint to tell the cache manager where that page might be in memory. Ideally, this percentage should match Database Cache % Hit. [Dev Only]
2519
No text
2521
Database Page Latch Conflicts/sec is the rate that users latching a database page for access to its data fail due to a conflicting latch owned on that same page by another user. [Dev Only]
2523
Database Page Latch Stalls/sec is the rate that users latching a database page for access to its data must wait for another user to release a latch on that same page. [Dev Only]
2525
Database Cache % Available is the percentage of the database cache that can be allocated to cache database pages that are newly created or read in from the database file(s). [Dev Only]
2527
No text
2529
Database Page Faults/sec is the rate that database file page requests require the database cache manager to allocate a new page from the database cache.
2531
Database Page Evictions/sec is the rate that database file page requests that require the database cache manager to allocate a new page from the database cache force another database page out of the cache. The eviction count is charged when the page is allocated and not when the previous owner of that page was actually evicted from the cache. If this rate is too high, the database cache size may be too small.
2533
Database Page Fault Stalls/sec is the rate of page faults that cannot be serviced because there are no pages available for allocation from the database cache. If this counter is non-zero most of the time, the clean threshold may be too low.
2535
Database Cache Size (MB) is the amount of system memory (in MegaBytes) used by the database cache manager to hold commonly used information from the database file(s) to prevent file operations. If the database cache size seems to be too small for optimal performance and there is very little available memory on the system (see Memory/Available Bytes), adding more memory to the system may increase performance. If there is a lot of available memory on the system and the database cache size is not growing beyond a certain point, the database cache size may be capped at an artificially low limit. Increasing this limit may increase performance.
2537
Database Cache Size is the amount of system memory used by the database cache manager to hold commonly used information from the database file(s) to prevent file operations. If the database cache size seems to be too small for optimal performance and there is very little available memory on the system (see Memory/Available Bytes), adding more memory to the system may increase performance. If there is a lot of available memory on the system and the database cache size is not growing beyond a certain point, the database cache size may be capped at an artificially low limit. Increasing this limit may increase performance.
2539
Database Cache Size Min is the minimum amount of system memory configured for use by the database cache manager to hold commonly used information from the database file(s) to prevent file operations. [Dev Only]
2541
Database Cache Size Max is the maximum amount of system memory configured for use by the database cache manager to hold commonly used information from the database file(s) to prevent file operations. [Dev Only]
2543
Database Cache % Available Min is the minimum percentage of the database cache that is kept to be allocated to cache database pages that are newly created or read in from the database file(s). If the percentage of available pages drops below this minimum, pages are thrown out of the database cache until the maximum percentage of available pages is reached. This percentage should be set as low as possible without causing the actual percentage to drop to zero, causing cache fault stalls. [Dev Only]
2545
No text
2547
Database Cache % Available Max is the maximum percentage of the database cache that is kept to be allocated to cache database pages that are newly created or read in from the database file(s). This percentage should be set as low as possible but far enough above the minimum percentage so that efficient production of availible pages is possible. [Dev Only]
2549
No text
2551
Database Pages Preread/sec is the rate that pages are read in anticipation of future use from the database file(s) into the database cache. [Dev Only]
2553
Database Cached Pages Preread/sec is the rate that pages are read in anticipation of future use from the database file(s) into the database cache that are already cached. This is non-ideal behavior that represents a waste of processing time. [Dev Only]
2555
Database Pages Preread Untouched/sec is the rate that pages are read in anticipation of future use from the database file(s) into the database cache that were subsequently thrown out without being used. This is non-ideal behavior that represents a waste of I/O bandwidth and processing time . [Dev Only]
2557
Database Pages Versioned / sec is the rate at which pages in the database cache are being copied into new pages in the cache for the purpose of being asynchronously written while the current version of that page in the database file is still being modified. This feature is primarily used to avoid cycles, branches, or long chains of flush order dependencies without requiring the pages involved to be synchronously written to disk. [Dev Only]
2559
Database Cache % Versioned is the percentage of the database cache that contains older versions of currently cached pages that have not yet been written to disk and thrown out of the cache. [Dev Only]
2561
No text
2563
Database Pages Ordinarily Written/sec is the rate that pages are written to the database file (s) from the database cache in preparation for evicting them from the cache to make room for other data. [Dev Only]
2565
Database Pages Anomalously Written/sec is the rate that pages are written to the database file (s) from the database cache before they would ordinarily be written. [Dev Only]
2567
Database Pages Opportunely Written/sec is the rate that pages are written to the database file (s) from the database cache because they happen to be near other pages that must be written. These additional writes are performed before they must happen in the hope that the total number of seeks required to write all the pages is reduced. [Dev Only]
2569
Database Pages Repeatedly Written/sec is the rate that pages are written to the database file (s) from the database cache more than once in their lifetime in the cache. These page writes represent extra writes above the theoretical minimum and can therefore be considered overhead. [Dev Only]
2571
Database Pages Idly Written/sec is the rate that pages are written to the database file (s) from the database cache because there is low disk activity. [Dev Only]
2573
Database Pages Coalesced Written/sec is the rate that pages are written to the database file (s) from the database cache coalesced with another page. [Dev Only]
2575
Database Pages Coalesced Read/sec is the rate that pages are read from the database file (s) to the database cache coalesced with another page. [Dev Only]
2577
Database Page History Records is the current number of database page access history records retained for supporting the LRU-K page replacment algorithm. [Dev Only]
2579
Database Page History % Hit is the percentage of database page access history record lookups that were successful. [Dev Only]
2581
No text
2583
Database Page Scans/sec is the rate at which database pages are considered for eviction from the database page cache. [Dev Only]
2585
Database Page Scans Out-of-order/sec is the rate at which database pages are considered for eviction from the database page cache in a priority counter to the page replacement algorithm. [Dev Only]
2587
No text
2589
Streaming Backup Pages Read/sec is the rate of database read operations performed for the purpose of streaming backups. [Dev Only]
2591
Online Defrag Pages Referenced/sec is the rate at which online defragmentation is touching database pages. [Dev Only]
2593
Online Defrag Pages Read/sec is the rate of database read operations being performed by online defragmentation. [Dev Only]
2595
Online Defrag Pages Preread/sec is the rate at which database pages are read in anticipation of future use by online defragmentation. [Dev Only]
2597
Online Defrag Pages Dirtied/sec is the rate at which online defragmentation is modifying clean database pages. [Dev Only]
2599
Online Defrag Pages Re-Dirtied/sec is the rate at which online defragmentation is modifying database pages that already contained modifications. [Dev Only]
2601
Online Defrag Log Records/sec is the rate at which online defragmentation is generating log records. [Dev Only]
2603
Online Defrag Average Log Bytes is the average size of the log records being generated by online defragmentation. [Dev only]
2605
No text
2607
Database Tasks Pages Referenced/sec is the rate at which background database tasks are touching database pages. [Dev Only]
2609
Database Tasks Pages Read/sec is the rate of database read operations being performed by background database tasks. [Dev Only]
2611
Database Tasks Pages Preread/sec is the rate at which database pages are read in anticipation of future use by background database tasks. [Dev Only]
2613
Database Tasks Pages Dirtied/sec is the rate at which background database tasks are modifying clean database pages. [Dev Only]
2615
Database Tasks Pages Re-Dirtied/sec is the rate at which background databases tasks are modifying database pages that already contained modifications. [Dev Only]
2617
Database Tasks Log Records/sec is the rate at which background database tasks are generating log records. [Dev Only]
2619
Database Tasks Average Log Bytes is the average size of the log records being generated by background database tasks. [Dev only]
2621
No text
2623
I/O Database Reads/sec is the rate of database read operations completed.
2625
I/O Database Reads Average Latency is the average length of time, in milliseconds, per database read operation.
2627
No text
2629
I/O Database Reads Average Bytes is the average number of bytes transferred per database read operation. [Dev Only]
2631
No text
2633
I/O Database Reads In Heap is the number of database read operations queued in the database engine's I/O heap and waiting to be issued. [Dev Only]
2635
I/O Database Reads Async Pending is the number of database read operations asynchronously pending completion. [Dev Only]
2637
I/O Database Reads Abnormal Latency/sec is the rate of database read operations that take an abnormally long length of time (default is 1 minute) to be serviced by the OS. [Dev Only]
2639
I/O Log Reads/sec is the rate of logfile read operations completed.
2641
I/O Log Reads Average Latency is the average length of time, in milliseconds, per logfile read operation. [Dev Only]
2643
No text
2645
I/O Log Reads Average Bytes is the average number of bytes transferred per logfile read operation. [Dev Only]
2647
No text
2649
I/O Log Reads In Heap is the number of logfile read operations queued in the database engine's I/O heap and waiting to be issued. [Dev Only]
2651
I/O Log Reads Async Pending is the number of logfile read operations asynchronously pending completion. [Dev Only]
2653
I/O Log Reads Abnormal Latency/sec is the rate of logfile read operations that take an abnormally long length of time (default is 1 minute) to be serviced by the OS. [Dev Only]
2655
I/O Database Writes/sec is the rate of database write operations completed.
2657
I/O Database Writes Average Latency is the average length of time, in milliseconds, per database write operation.
2659
No text
2661
I/O Database Writes Average Bytes is the average number of bytes transferred per database write operation. [Dev Only]
2663
No text
2665
I/O Database Writes In Heap is the number of database write operations queued in the database engine's I/O heap and waiting to be issued. [Dev Only]
2667
I/O Database Writes Async Pending is the number of database write operations asynchronously pending completion. [Dev Only]
2669
I/O Database Writes Abnormal Latency/sec is the rate of database write operations that take an abnormally long length of time (default is 1 minute) to be serviced by the OS. [Dev Only]
2671
I/O Log Writes/sec is the rate of logfile write operations completed.
2673
I/O Log Writes Average Latency is the average length of time, in milliseconds, per logfile write operation.
2675
No text
2677
I/O Log Writes Average Bytes is the average number of bytes transferred per logfile write operation. [Dev Only]
2679
No text
2681
I/O Log Writes In Heap is the number of logfile write operations queued in the database engine's I/O heap and waiting to be issued. [Dev Only]
2683
I/O Log Writes Async Pending is the number of logfile write operations asynchronously pending completion. [Dev Only]
2685
I/O Log Writes Abnormal Latency/sec is the rate of logfile write operations that take an abnormally long length of time (default is 1 minute) to be serviced by the OS. [Dev Only]
2687
SLV File Table Inserts/sec is the rate at which entries are inserted into an SLV File Table in the system. [Dev Only]
2689
SLV File Table Cleans/sec is the rate at which attempta are made to delete an entry from an SLV File Table in the system. [Dev Only]
2691
SLV File Table Deletes/sec is the rate at which entries are deleted from an SLV File Table in the system. [Dev Only]
2693
SLV File Table Entries is the total number of entries contained in all SLV File Tables in the system. [Dev Only]
2695
Threads Blocked/sec is the rate at which the execution of threads are suspended to wait for a specific event to occur or for the acquisition of a resource currently owned by another thread. [Dev Only]
2697
Threads Blocked is the current number of threads whose execution has been suspended to wait for a specific event to occur or for the acquisition of a resource currently owned by another thread. [Dev Only]
2699
Statistics for the ESE high performance embedded database management system by Table Class
2701
Record Inserts/sec is the rate at which records are being inserted into database tables. [Dev Only]
2703
Record Deletes/sec is the rate at which records in database tables are being flagged for deletion. [Dev Only]
2705
Record Deletes/sec is the rate at which records in database tables are being updated. [Dev Only]
2707
Record Unnecessary Replaces/sec is the rate at which updates to records in database tables are being discarded because the update did not actually modify the contents of the record. [Dev Only]
2709
Record Redundant Replaces/sec is the rate at which records in database tables are being updated with the exact same content of the original record. [Dev Only]
2711
Record Escrow-Updates/sec is the rate at which records in database tables are being escrow-updated. [Dev Only]
2713
Secondary Index Inserts/sec is the rate at which entries are being inserted into indexes of database tables. [Dev Only]
2715
Secondary Index Deletes/sec is the rate at which entries in indexes of database tables are being flagged for deletion. [Dev Only]
2717
False Index Column Updates/sec is the number of times per second an attempt was made to update an index because an update to at least one of the indexed columns was detected, only to discover that none of the indexed columns had actually changed (and therefore no index update was actually required). [Dev Only]
2719
False Tuple Index Column Updates/sec is the number of times per second an attempt was made to update a tuple index because an update to the tuple-indexed column was detected, only to discover that the column had not actually changed (and therefore no index update was actually required). [Dev Only]
2721
Record Intrinsic Long-Values Updated/sec is the rate at which intrinsic long-values are added to or replaced in records of database tables. [Dev Only]
2723
Record Separated Long-Values Added/sec is the rate at which separated long-values are normally added to records of database tables. [Dev Only]
2725
Record Separated Long-Values Forced/sec is the rate at which separated long-values are added to records of a database table because they could not be accommodated in the record itself. [Dev Only]
2727
Record Separated Long-Values All Forced/sec is the rate at which all intrinsic long-values are separated out of a record of a database table in order to accommodate updates to the record. [Dev Only]
2729
Record Separated Long-Values Reference All/sec is the rate at which a reference is added for all the separated long-values associated with a record of a database table. [Dev Only]
2731
Record Separated Long-Values Dereference All/sec is the rate at which a reference is removed for all the separated long-values associated with a record of a database table. [Dev Only]
2733
Separated Long-Value Seeks/sec is the rate at which seeks for a separated long-value in a database table are performed. [Dev Only]
2735
Separated Long-Value Retrieves/sec is the rate at which retrievals of a separated long-value in a database table are performed. [Dev Only]
2737
Separated Long-Value Creates/sec is the rate at which new separated long-values are added to a database table. [Dev Only]
2739
Separated Long-Value Updates/sec is the rate at which existing separated long-values in a database table are modified. [Dev Only]
2741
Separated Long-Value Deletes/sec is the rate at which separated long-values in a database table are flagged for deletion. [Dev Only]
2743
Separated Long-Value Copies/sec is the rate at which existing separated long-values in a database table are copied. [Dev Only]
2745
Separated Long-Value Chunk Seeks/sec is the rate at which seeks for a particular chunk of a separated long-value in a database table are performed. [Dev Only]
2747
Separated Long-Value Chunk Retrieves/sec is the rate at which retrievals of a chunk of a separated long-value in a database table are performed. [Dev Only]
2749
Separated Long-Value Chunk Appends/sec is the rate at which chunks are appended to separated long-values of database tables. [Dev Only]
2751
Separated Long-Value Chunk Replaces/sec is the rate at which existing separated long-value chunks in a database table are replaced. [Dev Only]
2753
Separated Long-Value Chunk Deletes/sec is the rate at which separated long-value chunks in a database table are flagged for deletion. [Dev Only]
2755
Separated Long-Value Chunk Copies/sec is the rate at which existing separated long-value chunks in a database table are copied. [Dev Only]
2757
B+ Tree Append Splits/sec is the count of times a page is appended to a database B+ Tree per second. [Dev Only]
2759
B+ Tree Right Splits/sec is the count of times a page is split right in a database B+ Tree per second. [Dev Only]
2761
B+ Tree Right Hotpoint Splits/sec is the count of times a page is split right in a database B+ Tree, but which is treated as an append at a local "hotpoint" in the B+ Tree per second. [Dev Only]
2763
B+ Tree Vertical Splits/sec is the count of times a page is split vertically in a database B+ Tree per second. [Dev Only]
2765
B+ Tree Splits/sec is the count of times a page is appended to or split in a database B+ Tree per second. [Dev Only]
2767
B+ Tree Empty Page Merges/sec is the count of empty pages removed from a database B+ Tree per second. [Dev Only]
2769
Right Merges/sec is the count of pages removed from a database B+ Tree per second by moving all its records to the next page to the right. [Dev Only]
2771
B+ Tree Partial Merges/sec is the count of pages where some of its records are moved to a page on the right in a database B+ Tree per second. [Dev Only]
2773
B+ Tree Merges/sec is the count of pages merged in a database B+ Tree per second. [Dev Only]
2775
B+ Tree Failed Simple Page Cleanup Attempts/sec is the rate that attempts to reclaim deleted node space on a page are unsuccessful due to a conflict when attempting to write-latch the page. The cleanup is re-tried by locking the root of the B+ Tree. [Dev Only]
2777
B+ Tree Seek Short Circuits/sec is the count of repeated seeks to the same record in a database B+ Tree that are saved by jumping directly to the cached physical location of that record per second. [Dev Only]
2779
B+ Tree Unnecessary Sibling Latches/sec is the count of sibling pages latched during a database B+ Tree Delete in the hopes of performing a merge where a merge is not possible, making that latch unnecessary. [Dev Only]
2781
B+ Tree Move Nexts/sec is the count of times the database engine moves to the next record in a B+ Tree per second. [Dev Only]
2783
B+ Tree Move Nexts (Non-Visible Nodes Skipped)/sec is the count of times the database engine skips non-visible records while attempting to move to the next visible record in a B+ Tree per second. [Dev Only]
2785
B+ Tree Move Prevs/sec is the count of times the database engine moves to the previous record in a B+ Tree per second. [Dev Only]
2787
B+ Tree Move Prevs (Non-Visible Nodes Skipped)/sec is the count of times the database engine skips non-visible records while attempting to move to the previous visible record in a B+ Tree per second. [Dev Only]
2789
B+ Tree Seeks/sec is the count of times a record is seeked to by a key in a database B+ Tree per second. [Dev Only]
2791
B+ Tree Inserts/sec is the count of times a record is inserted in a database B+ Tree per second. [Dev Only]
2793
B+ Tree Replaces/sec is the count of times a record is replaced in a database B+ Tree per second. [Dev Only]
2795
B+ Tree Flag Deletes/sec is the count of times a record is flag deleted in a database B+ Tree per second. [Dev Only]
2797
B+ Tree Deletes/sec is the count of times a record is deleted in a database B+ Tree per second. [Dev Only]
2799
B+ Tree Appends/sec is the count of times a record is appended to a database B+ Tree per second. [Dev Only]
2801
B+ Tree Creates/sec is the number of B+ Trees and their corresponding space trees (if any) created per second. This can also be viewed as the number of FDP creates per second. [Dev Only]
2803
B+ Tree Creates (Total) is the total number of B+ Trees and their corresponding space trees (if any) created. This can also be viewed as the total number of FDP creates. [Dev Only]
2805
B+ Tree Destroys/sec is the number of B+ Trees and their corresponding space trees (if any) destroyed per second. This can also be viewed as the number of FDP destroys per second. [Dev Only]
2807
B+ Tree Destroys (Total) is the total number of B+ Trees and their corresponding space trees (if any) destroyed. This can also be viewed as the total number of FDP destroys. [Dev Only]
2809
Database Cache Size (MB) is the amount of system memory (in MegaBytes) used by the database cache manager to hold commonly used information from the database file(s) to prevent file operations. If the database cache size seems to be too small for optimal performance and there is very little available memory on the system (see Memory/Available Bytes), adding more memory to the system may increase performance. If there is a lot of available memory on the system and the database cache size is not growing beyond a certain point, the database cache size may be capped at an artificially low limit. Increasing this limit may increase performance.
2811
Database Pages Read Async/sec is the rate that pages are asynchronously read from the database file(s) into the database cache. [Dev Only]
2813
Database Pages Read Sync/sec is the rate that pages are synchronously read from the database file(s) into the database cache. [Dev Only]
2815
Database Pages Written/sec is the rate that pages are written to the database file (s) from the database cache. [Dev Only]
2817
Database Pages Transferred/sec is the rate that pages are transferred from the database file(s) to the database cache and vice versa. [Dev Only]
2819
Database Pages Preread/sec is the rate that pages are read in anticipation of future use from the database file(s) into the database cache. [Dev Only]
2821
Database Cached Pages Preread/sec is the rate that pages are read in anticipation of future use from the database file(s) into the database cache that are already cached. This is non-ideal behavior that represents a waste of processing time. [Dev Only]
2823
Database Pages Preread Untouched/sec is the rate that pages are read in anticipation of future use from the database file(s) into the database cache that were subsequently thrown out without being used. This is non-ideal behavior that represents a waste of I/O bandwidth and processing time . [Dev Only]
2825
Database Pages Versioned / sec is the rate at which pages in the database cache are being copied into new pages in the cache for the purpose of being asynchronously written while the current version of that page in the database file is still being modified. This feature is primarily used to avoid cycles, branches, or long chains of flush order dependencies without requiring the pages involved to be synchronously written to disk. [Dev Only]
2827
Database Pages Ordinarily Written/sec is the rate that pages are written to the database file (s) from the database cache in preparation for evicting them from the cache to make room for other data. [Dev Only]
2829
Database Pages Anomalously Written/sec is the rate that pages are written to the database file (s) from the database cache before they would ordinarily be written. [Dev Only]
2831
Database Pages Opportunely Written/sec is the rate that pages are written to the database file (s) from the database cache because they happen to be near other pages that must be written. These additional writes are performed before they must happen in the hope that the total number of seeks required to write all the pages is reduced. [Dev Only]
2833
Database Pages Repeatedly Written/sec is the rate that pages are written to the database file (s) from the database cache more than once in their lifetime in the cache. These page writes represent extra writes above the theoretical minimum and can therefore be considered overhead. [Dev Only]
2835
Database Pages Idly Written/sec is the rate that pages are written to the database file (s) from the database cache because there is low disk activity. [Dev Only]
2837
Database Pages Coalesced Written/sec is the rate that pages are written to the database file (s) from the database cache coalesced with another page. [Dev Only]
2839
Database Pages Coalesced Read/sec is the rate that pages are read from the database file (s) to the database cache coalesced with another page. [Dev Only]
2841
Instances in this process
2843
Pages Converted/sec is the count of times per second a database page is converted from an older database format
2845
Pages Converted is the count of database pages that have been converted from an older format
2847
Records Converted/sec is the count of times per second a database record is converted from an older database format
2849
Records Converted is the count of database records that have been converted from an older format
2851
FCB Asynchronous Scan/sec is the number of cached schema records (FCBs) scanned during asynchronous schema record cleanup. These records are scanned to age out older schema definitions. [Dev Only]
2853
FCB Asynchronous Purge/sec is the number of cached schema records (FCBs) purged during asynchronous schema record cleanup. These records are purged to age out older schema definitions. [Dev Only]
2855
FCB Asynchronous Threshold-Scan/sec is the number of cached schema records (FCBs) scanned during asynchronous schema record cleanup. Cleanup was triggered by a large number of schema records above the preferred limit. These records are aggressively scanned to age out older schema definitions. [Dev Only]
2857
FCB Asynchronous Threshold-Purge/sec is the number of cached schema records (FCBs) purged during asynchronous schema record cleanup. Cleanup was triggered by a large number of schema records above the preferred limit. These records are aggressively purged to age out older schema definitions. [Dev Only]
2859
FCB Asynchronous Purge Conflicts/sec is the number of failed purge attempts on cached schema records (FCBs) during asynchronous schema record cleanup. The purge operation failed because exclusive ownership of the schema record could not be obtained. [Dev Only]
2861
FCB Synchronous Purge/sec is the number of cached schema records (FCBs) being synchronously purged each second. [Dev Only]
2863
FCB Synchronous Purge Stalls/sec is the number of stalls encountered while waiting for exclusive ownership of cached schema records (FCBs) in order to synchronously purge them. [Dev Only]
2865
FCB Allocations Wait For Version Cleanup/sec is the number of FCB allocations that must first wait for version cleanup in an attempt to free used FCBs for re-use. [Dev Only]
2867
FCB Purge On Cursor Close/sec is the number of cached schema records (FCBs) being synchronously purged when the cursor is closed (instead of leaving the schema record cached) each second. [Dev Only]
2869
FCB Cache % Hit is the percentage of schema records (FCBs) opened directly from the schema record cache. No file operations were required. [Dev Only]
2871
No text
2873
FCB Cache Stalls/sec is the number of stalls encountered while waiting for exclusive ownership of cached schema records (FCBs) in order to update their reference count. [Dev Only]
2875
FCB Cache Maximum is the absolute maximum number of the schema records (FCBs) that can exist in the cache. [Dev Only]
2877
FCB Cache Preferred is the preferred maximum number of the schema records (FCBs) that should exist in the cache. [Dev Only]
2879
FCB Cache Allocated is the number of cached schema records (FCBs) currently allocated and in use. [Dev Only]
2881
FCB Cache Available is the number of cached schema records (FCBs) currently allocated but not in use. These records will be used and/or purged as required. [Dev Only]
2883
Sessions In Use is the number of database sessions currently open for use by client threads. [Dev Only]
2885
Sessions % Used is the percentage of database sessions currently open for use by client threads. [Dev Only]
2887
No text
2889
Table Open Cache % Hit is the percentage of database tables opened using cached schema information. If this percentage is too low, the table cache size may be too small.
2891
No text
2893
Table Open Cache Hits/sec is the number of database tables opened using cached schema information per second. If this rate is too low, the table cache size may be too small.
2895
Table Open Cache Misses/sec is the number of database tables opened without using cached schema information per second. If this rate is too high, the table cache size may be too small.
2897
Table Opens/sec is the number of database tables opened per second.
2899
Log Bytes Write per second is the rate bytes are written to the log.
2901
Log Buffer Size is the amount of memory, in bytes, allocated for the database log buffers. [Dev Only]
2903
Log Buffer Bytes Used is the amount of bytes in the log buffers that have not yet been flushed to the logs. [Dev only]
2905
Log Buffer Bytes Free is the amount of free space available in the log buffers. [Dev only]
2907
Log Threads Waiting is the number of threads waiting for their data to be written to the log in order to complete an update of the database. If this number is too high, the log may be a bottleneck.
2909
Log File Size is the size, in bytes, of the database log files. [Dev Only]
2911
Log Checkpoint Depth represents the amount of work, in bytes, that will need to be redone or undone to the database file(s) if the process crashes. [Dev Only]
2913
Log Generation Checkpoint Depth represents the amount of work, in count of log files, that will need to be redone or undone to the database file(s) if the process crashes.
2915
User Read Only Transaction Commits to Level 0/sec is the count of fully committed transactions started by the calling process that do not modify any data stored in the database engine. [Dev Only]
2917
User Read/Write Transaction Commits to Level 0/sec is the count of fully committed transactions started by the calling process that modify data stored in the database engine. [Dev Only]
2919
User Transaction Commits to Level 0/sec is the count of fully committed transactions started by the calling process that access data stored in the database engine. [Dev Only]
2921
User Read Only Transaction Rollbacks to Level 0/sec is the count of aborted transactions started by the calling process that do not modify any data stored in the database engine. [Dev Only]
2923
User Read/Write Transaction Rollbacks to Level 0/sec is the count of aborted transactions started by the calling process that modify data stored in the database engine. [Dev Only]
2925
User Transaction Rollbacks to Level 0/sec is the count of aborted transactions started by the calling process that access data stored in the database engine. [Dev Only]
2927
System Read Only Transaction Commits to Level 0/sec is the count of fully committed transactions started internally that do not modify any data stored in the database engine. [Dev Only]
2929
System Read/Write Transaction Commits to Level 0/sec is the count of fully committed transactions started internally that modify data stored in the database engine. [Dev Only]
2931
System Transaction Commits to Level 0/sec is the count of fully committed transactions started internally that access data stored in the database engine. [Dev Only]
2933
System Read Only Transaction Rollbacks to Level 0/sec is the count of aborted transactions started internally that do not modify any data stored in the database engine. [Dev Only]
2935
System Read/Write Transaction Rollbacks to Level 0/sec is the count of aborted transactions started internally that modify data stored in the database engine. [Dev Only]
2937
System Transaction Rollbacks to Level 0/sec is the count of aborted transactions started internally that access data stored in the database engine. [Dev Only]
2939
Database Page Allocation File Extension Async Consumed/sec is the rate of page allocations from a database file that must be serviced by extending the database file, but which do not stall when doing doing so. [Dev Only]
2941
Database Page Allocation File Extension Stalls/sec is the rate of page allocations from a database file that must be serviced by extending the database file and which stall when doing so. [Dev Only]
2943
Log Records/sec is the count of records written to the database log buffers per second. [Dev Only]
2945
Log Buffer Capacity Flushes/sec is the count of times the database log buffers must be flushed per second because they are full. [Dev Only]
2947
Log Buffer Commit Flushes/sec is the count of times the database log buffers must be flushed per second because a transaction is fully committing its changes. [Dev Only]
2949
Log Buffer Flushes/sec is the count of times the database log buffers must be flushed per second.
2951
Log Writes/sec is the number of times the log buffers are written to the log file(s) per second. If this number approaches the maximum write rate for the media holding the log file(s), the log may be a bottleneck.
2953
Log Record Stalls/sec is the number of log records that cannot be added to the log buffers per second because they are full. If this counter is non-zero most of the time, the log buffer size may be a bottleneck.
2955
Total number of version buckets allocated
2957
Total number of version buckets allocated for FlagDelete RCEs [Dev Only]
2959
VER Bucket Allocations Wait For Version Cleanup/sec is the number of version bucket allocations that must first wait for version cleanup in an attempt to free used version buckets for re-use. [Dev Only]
2961
Average length of bookmark in RCE [Dev Only]
2963
Number of times per second we look in the version store for a node whose version bit is set but which has no versions [Dev Only]
2965
Number of times per second a version store clean task is dispatched asynchronously to be performed [Dev Only]
2967
Number of times per second a version store clean task is performed synchronously [Dev Only]
2969
Number of times per second a version store clean task was discarded due to load concerns [Dev Only]
2971
Number of times per second a dispatched version store cleanup task fails [Dev Only]
2973
Record Inserts/sec is the rate at which records are being inserted into database tables. [Dev Only]
2975
Record Deletes/sec is the rate at which records in database tables are being flagged for deletion. [Dev Only]
2977
Record Deletes/sec is the rate at which records in database tables are being updated. [Dev Only]
2979
Record Unnecessary Replaces/sec is the rate at which updates to records in database tables are being discarded because the update did not actually modify the contents of the record. [Dev Only]
2981
Record Redundant Replaces/sec is the rate at which records in database tables are being updated with the exact same content of the original record. [Dev Only]
2983
Record Escrow-Updates/sec is the rate at which records in database tables are being escrow-updated. [Dev Only]
2985
Secondary Index Inserts/sec is the rate at which entries are being inserted into indexes of database tables. [Dev Only]
2987
Secondary Index Deletes/sec is the rate at which entries in indexes of database tables are being flagged for deletion. [Dev Only]
2989
False Index Column Updates/sec is the number of times per second an attempt was made to update an index because an update to at least one of the indexed columns was detected, only to discover that none of the indexed columns had actually changed (and therefore no index update was actually required). [Dev Only]
2991
False Tuple Index Column Updates/sec is the number of times per second an attempt was made to update a tuple index because an update to the tuple-indexed column was detected, only to discover that the column had not actually changed (and therefore no index update was actually required). [Dev Only]
2993
Record Intrinsic Long-Values Updated/sec is the rate at which intrinsic long-values are added to or replaced in records of database tables. [Dev Only]
2995
Record Separated Long-Values Added/sec is the rate at which separated long-values are normally added to records of database tables. [Dev Only]
2997
Record Separated Long-Values Forced/sec is the rate at which separated long-values are added to records of a database table because they could not be accommodated in the record itself. [Dev Only]
2999
Record Separated Long-Values All Forced/sec is the rate at which all intrinsic long-values are separated out of a record of a database table in order to accommodate updates to the record. [Dev Only]
3001
Record Separated Long-Values Reference All/sec is the rate at which a reference is added for all the separated long-values associated with a record of a database table. [Dev Only]
3003
Record Separated Long-Values Dereference All/sec is the rate at which a reference is removed for all the separated long-values associated with a record of a database table. [Dev Only]
3005
Separated Long-Value Seeks/sec is the rate at which seeks for a separated long-value in a database table are performed. [Dev Only]
3007
Separated Long-Value Retrieves/sec is the rate at which retrievals of a separated long-value in a database table are performed. [Dev Only]
3009
Separated Long-Value Creates/sec is the rate at which new separated long-values are added to a database table. [Dev Only]
3011
Separated Long-Value Updates/sec is the rate at which existing separated long-values in a database table are modified. [Dev Only]
3013
Separated Long-Value Deletes/sec is the rate at which separated long-values in a database table are flagged for deletion. [Dev Only]
3015
Separated Long-Value Copies/sec is the rate at which existing separated long-values in a database table are copied. [Dev Only]
3017
Separated Long-Value Chunk Seeks/sec is the rate at which seeks for a particular chunk of a separated long-value in a database table are performed. [Dev Only]
3019
Separated Long-Value Chunk Retrieves/sec is the rate at which retrievals of a chunk of a separated long-value in a database table are performed. [Dev Only]
3021
Separated Long-Value Chunk Appends/sec is the rate at which chunks are appended to separated long-values of database tables. [Dev Only]
3023
Separated Long-Value Chunk Replaces/sec is the rate at which existing separated long-value chunks in a database table are replaced. [Dev Only]
3025
Separated Long-Value Chunk Deletes/sec is the rate at which separated long-value chunks in a database table are flagged for deletion. [Dev Only]
3027
Separated Long-Value Chunk Copies/sec is the rate at which existing separated long-value chunks in a database table are copied. [Dev Only]
3029
B+ Tree Append Splits/sec is the count of times a page is appended to a database B+ Tree per second. [Dev Only]
3031
B+ Tree Right Splits/sec is the count of times a page is split right in a database B+ Tree per second. [Dev Only]
3033
B+ Tree Right Hotpoint Splits/sec is the count of times a page is split right in a database B+ Tree, but which is treated as an append at a local "hotpoint" in the B+ Tree per second. [Dev Only]
3035
B+ Tree Vertical Splits/sec is the count of times a page is split vertically in a database B+ Tree per second. [Dev Only]
3037
B+ Tree Splits/sec is the count of times a page is appended to or split in a database B+ Tree per second. [Dev Only]
3039
B+ Tree Empty Page Merges/sec is the count of empty pages removed from a database B+ Tree per second. [Dev Only]
3041
Right Merges/sec is the count of pages removed from a database B+ Tree per second by moving all its records to the next page to the right. [Dev Only]
3043
B+ Tree Partial Merges/sec is the count of pages where some of its records are moved to a page on the right in a database B+ Tree per second. [Dev Only]
3045
B+ Tree Merges/sec is the count of pages merged in a database B+ Tree per second. [Dev Only]
3047
B+ Tree Failed Simple Page Cleanup Attempts/sec is the rate that attempts to reclaim deleted node space on a page are unsuccessful due to a conflict when attempting to write-latch the page. The cleanup is re-tried by locking the root of the B+ Tree. [Dev Only]
3049
B+ Tree Seek Short Circuits/sec is the count of repeated seeks to the same record in a database B+ Tree that are saved by jumping directly to the cached physical location of that record per second. [Dev Only]
3051
B+ Tree Unnecessary Sibling Latches/sec is the count of sibling pages latched during a database B+ Tree Delete in the hopes of performing a merge where a merge is not possible, making that latch unnecessary. [Dev Only]
3053
B+ Tree Move Nexts/sec is the count of times the database engine moves to the next record in a B+ Tree per second. [Dev Only]
3055
B+ Tree Move Nexts (Non-Visible Nodes Skipped)/sec is the count of times the database engine skips non-visible records while attempting to move to the next visible record in a B+ Tree per second. [Dev Only]
3057
B+ Tree Move Prevs/sec is the count of times the database engine moves to the previous record in a B+ Tree per second. [Dev Only]
3059
B+ Tree Move Prevs (Non-Visible Nodes Skipped)/sec is the count of times the database engine skips non-visible records while attempting to move to the previous visible record in a B+ Tree per second. [Dev Only]
3061
B+ Tree Seeks/sec is the count of times a record is seeked to by a key in a database B+ Tree per second. [Dev Only]
3063
B+ Tree Inserts/sec is the count of times a record is inserted in a database B+ Tree per second. [Dev Only]
3065
B+ Tree Replaces/sec is the count of times a record is replaced in a database B+ Tree per second. [Dev Only]
3067
B+ Tree Flag Deletes/sec is the count of times a record is flag deleted in a database B+ Tree per second. [Dev Only]
3069
B+ Tree Deletes/sec is the count of times a record is deleted in a database B+ Tree per second. [Dev Only]
3071
B+ Tree Appends/sec is the count of times a record is appended to a database B+ Tree per second. [Dev Only]
3073
B+ Tree Creates/sec is the number of B+ Trees and their corresponding space trees (if any) created per second. This can also be viewed as the number of FDP creates per second. [Dev Only]
3075
B+ Tree Creates (Total) is the total number of B+ Trees and their corresponding space trees (if any) created. This can also be viewed as the total number of FDP creates. [Dev Only]
3077
B+ Tree Destroys/sec is the number of B+ Trees and their corresponding space trees (if any) destroyed per second. This can also be viewed as the number of FDP destroys per second. [Dev Only]
3079
B+ Tree Destroys (Total) is the total number of B+ Trees and their corresponding space trees (if any) destroyed. This can also be viewed as the total number of FDP destroys. [Dev Only]
3081
Database Pages Read Async/sec is the rate that pages are asynchronously read from the database file(s) into the database cache. [Dev Only]
3083
Database Pages Read Sync/sec is the rate that pages are synchronously read from the database file(s) into the database cache. [Dev Only]
3085
Database Pages Written/sec is the rate that pages are written to the database file (s) from the database cache. [Dev Only]
3087
Database Pages Transferred/sec is the rate that pages are transferred from the database file(s) to the database cache and vice versa. [Dev Only]
3089
Database Pages Preread/sec is the rate that pages are read in anticipation of future use from the database file(s) into the database cache. [Dev Only]
3091
Database Cached Pages Preread/sec is the rate that pages are read in anticipation of future use from the database file(s) into the database cache that are already cached. This is non-ideal behavior that represents a waste of processing time. [Dev Only]
3093
Database Pages Preread Untouched/sec is the rate that pages are read in anticipation of future use from the database file(s) into the database cache that were subsequently thrown out without being used. This is non-ideal behavior that represents a waste of I/O bandwidth and processing time . [Dev Only]
3095
Database Pages Versioned / sec is the rate at which pages in the database cache are being copied into new pages in the cache for the purpose of being asynchronously written while the current version of that page in the database file is still being modified. This feature is primarily used to avoid cycles, branches, or long chains of flush order dependencies without requiring the pages involved to be synchronously written to disk. [Dev Only]
3097
Database Pages Ordinarily Written/sec is the rate that pages are written to the database file (s) from the database cache in preparation for evicting them from the cache to make room for other data. [Dev Only]
3099
Database Pages Anomalously Written/sec is the rate that pages are written to the database file (s) from the database cache before they would ordinarily be written. [Dev Only]
3101
Database Pages Opportunely Written/sec is the rate that pages are written to the database file (s) from the database cache because they happen to be near other pages that must be written. These additional writes are performed before they must happen in the hope that the total number of seeks required to write all the pages is reduced. [Dev Only]
3103
Database Pages Repeatedly Written/sec is the rate that pages are written to the database file (s) from the database cache more than once in their lifetime in the cache. These page writes represent extra writes above the theoretical minimum and can therefore be considered overhead. [Dev Only]
3105
Database Pages Idly Written/sec is the rate that pages are written to the database file (s) from the database cache because there is low disk activity. [Dev Only]
3107
Database Pages Coalesced Written/sec is the rate that pages are written to the database file (s) from the database cache coalesced with another page. [Dev Only]
3109
Database Pages Coalesced Read/sec is the rate that pages are read from the database file (s) to the database cache coalesced with another page. [Dev Only]
3111
Streaming Backup Pages Read/sec is the rate of database read operationsperformed for the purpose of streaming backups.
3113
Online Defrag Pages Referenced/sec is the rate at which online defragmentation is touching database pages. [Dev Only]
3115
Online Defrag Pages Read/sec is the rate of database read operations being performed by online defragmentation. [Dev Only]
3117
Online Defrag Pages Preread/sec is the rate at which database pages are read in anticipation of future use by online defragmentation. [Dev Only]
3119
Online Defrag Pages Dirtied/sec is the rate at which online defragmentation is modifying clean database pages. [Dev Only]
3121
Online Defrag Pages Re-Dirtied/sec is the rate at which online defragmentation is modifying database pages that already contained modifications. [Dev Only]
3123
Online Defrag Log Records/sec is the rate at which online defragmentation is generating log records. [Dev Only]
3125
Online Defrag Average Log Bytes is the average size of the log records being generated by online defragmentation. [Dev only]
3127
No text
3129
Database Tasks Pages Referenced/sec is the rate at which background database tasks are touching database pages. [Dev Only]
3131
Database Tasks Pages Read/sec is the rate of database read operations being performed by background database tasks. [Dev Only]
3133
Database Tasks Pages Preread/sec is the rate at which database pages are read in anticipation of future use by background database tasks. [Dev Only]
3135
Database Tasks Pages Dirtied/sec is the rate at which background database tasks are modifying clean database pages. [Dev Only]
3137
Database Tasks Pages Re-Dirtied/sec is the rate at which background databases tasks are modifying database pages that already contained modifications. [Dev Only]
3139
Database Tasks Log Records/sec is the rate at which background database tasks are generating log records. [Dev Only]
3141
Database Tasks Average Log Bytes is the average size of the log records being generated by background database tasks. [Dev only]
3143
No text
3145
I/O Database Reads/sec is the rate of database read operations completed.
3147
I/O Database Reads Average Latency is the average length of time, in milliseconds, per database read operation.
3149
No text
3151
I/O Database Reads Average Bytes is the average number of bytes transferred per database read operation. [Dev Only]
3153
No text
3155
I/O Database Reads In Heap is the number of database read operations queued in the database engine's I/O heap and waiting to be issued. [Dev Only]
3157
I/O Database Reads Async Pending is the number of database read operations asynchronously pending completion. [Dev Only]
3159
I/O Database Reads Abnormal Latency/sec is the rate of database read operations that take an abnormally long length of time (default is 1 minute) to be serviced by the OS. [Dev Only]
3161
I/O Log Reads/sec is the rate of logfile read operations completed.
3163
I/O Log Reads Average Latency is the average length of time, in milliseconds, per logfile read operation. [Dev Only]
3165
No text
3167
I/O Log Reads Average Bytes is the average number of bytes transferred per logfile read operation. [Dev Only]
3169
No text
3171
I/O Log Reads In Heap is the number of logfile read operations queued in the database engine's I/O heap and waiting to be issued. [Dev Only]
3173
I/O Log Reads Async Pending is the number of logfile read operations asynchronously pending completion. [Dev Only]
3175
I/O Log Reads Abnormal Latency/sec is the rate of logfile read operations that take an abnormally long length of time (default is 1 minute) to be serviced by the OS. [Dev Only]
3177
I/O Database Writes/sec is the rate of database write operations completed.
3179
I/O Database Writes Average Latency is the average length of time, in milliseconds, per database write operation.
3181
No text
3183
I/O Database Writes Average Bytes is the average number of bytes transferred per database write operation. [Dev Only]
3185
No text
3187
I/O Database Writes In Heap is the number of database write operations queued in the database engine's I/O heap and waiting to be issued. [Dev Only]
3189
I/O Database Writes Async Pending is the number of database write operations asynchronously pending completion. [Dev Only]
3191
I/O Database Writes Abnormal Latency/sec is the rate of database write operations that take an abnormally long length of time (default is 1 minute) to be serviced by the OS. [Dev Only]
3193
I/O Log Writes/sec is the rate of logfile write operations completed.
3195
I/O Log Writes Average Latency is the average length of time, in milliseconds, per logfile write operation.
3197
No text
3199
I/O Log Writes Average Bytes is the average number of bytes transferred per logfile write operation. [Dev Only]
3201
No text
3203
I/O Log Writes In Heap is the number of logfile write operations queued in the database engine's I/O heap and waiting to be issued. [Dev Only]
3205
I/O Log Writes Async Pending is the number of logfile write operations asynchronously pending completion. [Dev Only]
3207
I/O Log Writes Abnormal Latency/sec is the rate of logfile write operations that take an abnormally long length of time (default is 1 minute) to be serviced by the OS. [Dev Only]
3209
Microsoft Distributed Transaction Coordinator performance counters
3211
Number of currently active transactions
3213
Number of committed transactions
3215
Number of aborted transactions
3217
Number of in doubt transactions
3219
Maximum number of transactions ever concurrently active
3221
Number of transactions committed by the system administrator
3223
Number of transactions aborted by the system administrator
3225
Minimum time delta between transaction begin and commit
3227
Average time delta between transaction begin and commit
3229
Maximum time delta between transaction begin and commit
3231
Transactions performed per second
3233
Transactions committed per second
3235
Transactions aborted per second
3425
Displays the current bulk transfer rate in bytes/sec.
3427
Displays the current isochronous transfer rate in bytes/sec.
3429
Displays the current interrupt transfer rate in bytes/sec.
3431
Displays the current control transfer rate in bytes/sec.
3433
Displays the rate of PCI interrupt generation by the USB controller. For controller instances only.
3435
Displays the current rate Work Signals generated per second by the usbport driver. For controller instances only.
3437
Displays the percentage of BW reserved for interrupt transfers
3439
Displays the percentage of BW reserved for ISO transfers
3441
USB I/O Counters
3443
Displays the average size of all transfer URBs. For device instances only.
3445
Number of ISO packets that are NOT late, but complete with an error. For device instances only.
3447
Avg number of ms between the current frame and the start frame of an ISO transfer when scheduled. For device instances only.
3449
Number of Transfer URBs completing with an error status. For device instances only.
3451
Non-zero value if the host controller is not running(idle).
3453
Non-Zero value if the host controller async schedule is not running(idle).
3455
Incremented each time the controller async cache is flushed.
3457
Non-Zero if the periodic schedule is not running(idle).
3459
Incremented each time the controller periodic cache is flushed.
3461
Help not available.
3463
The cumulative total number of socket connections established for this process since the process was started.
3465
The cumulative total number of bytes received over all open socket connections since the process was started. This number includes data and any protocol information that is not defined by the TCP/IP protocol.
3467
The cumulative total number of bytes sent over all open socket connections since the process was started. This number includes data and any protocol information that is not defined by the TCP/IP protocol.
3469
The cumulative total number of datagram packets received since the process was started.
3471
The cumulative total number of datagram packets sent since the process was started.
3473
Counters for System.Data.SqlClient
3475
The number of actual connections per second that are being made to servers
3477
The number of actual disconnects per second that are being made to servers
3479
The number of connections we get from the pool per second
3481
The number of connections we return to the pool per second
3483
The number of connections that are not using connection pooling
3485
The number of connections that are managed by the connection pooler
3487
The number of unique connection strings
3489
The number of unique connection strings waiting for pruning
3491
The number of active connection pools
3493
The number of inactive connection pools
3495
The number of connections currently in-use
3497
The number of connections currently available for use
3499
The number of connections currently waiting to be made ready for use
3501
The number of connections we reclaim from GCed external connections
3503
.Net CLR Data
3505
Current number of connections, pooled or not.
3507
Current number of connections in all pools associated with the process.
3509
Current number of pools associated with the process.
3511
The highest number of connections in all pools since the process started.
3513
The total number of connection open attempts that have failed for any reason.
3515
The total number of command executes that have failed for any reason.
3517
Counters for CLR Garbage Collected heap.
3519
This counter displays the number of times the generation 0 objects (youngest; most recently allocated) are garbage collected (Gen 0 GC) since the start of the application. Gen 0 GC occurs when the available memory in generation 0 is not sufficient to satisfy an allocation request. This counter is incremented at the end of a Gen 0 GC. Higher generation GCs include all lower generation GCs. This counter is explicitly incremented when a higher generation (Gen 1 or Gen 2) GC occurs. _Global_ counter value is not accurate and should be ignored. This counter displays the last observed value.
3521
This counter displays the number of times the generation 1 objects are garbage collected since the start of the application. The counter is incremented at the end of a Gen 1 GC. Higher generation GCs include all lower generation GCs. This counter is explicitly incremented when a higher generation (Gen 2) GC occurs. _Global_ counter value is not accurate and should be ignored. This counter displays the last observed value.
3523
This counter displays the number of times the generation 2 objects (older) are garbage collected since the start of the application. The counter is incremented at the end of a Gen 2 GC (also called full GC). _Global_ counter value is not accurate and should be ignored. This counter displays the last observed value.
3525
This counter displays the bytes of memory that survive garbage collection (GC) and are promoted from generation 0 to generation 1; objects that are promoted just because they are waiting to be finalized are not included in this counter. This counter displays the value observed at the end of the last GC; its not a cumulative counter.
3527
This counter displays the bytes of memory that survive garbage collection (GC) and are promoted from generation 1 to generation 2; objects that are promoted just because they are waiting to be finalized are not included in this counter. This counter displays the value observed at the end of the last GC; its not a cumulative counter. This counter is reset to 0 if the last GC was a Gen 0 GC only.
3529
This counter displays the bytes per second that are promoted from generation 0 (youngest) to generation 1; objects that are promoted just because they are waiting to be finalized are not included in this counter. Memory is promoted when it survives a garbage collection. This counter was designed as an indicator of relatively long-lived objects being created per sec. This counter displays the difference between the values observed in the last two samples divided by the duration of the sample interval.
3531
This counter displays the bytes per second that are promoted from generation 1 to generation 2 (oldest); objects that are promoted just because they are waiting to be finalized are not included in this counter. Memory is promoted when it survives a garbage collection. Nothing is promoted from generation 2 since it is the oldest. This counter was designed as an indicator of very long-lived objects being created per sec. This counter displays the difference between the values observed in the last two samples divided by the duration of the sample interval.
3533
This counter displays the bytes of memory that are promoted from generation 0 to generation 1 just because they are waiting to be finalized. This counter displays the value observed at the end of the last GC; its not a cumulative counter.
3535
This counter displays the process ID of the CLR process instance being monitored.
3537
This counter displays the maximum bytes that can be allocated in generation 0 (Gen 0); its does not indicate the current number of bytes allocated in Gen 0. A Gen 0 GC is triggered when the allocations since the last GC exceed this size. The Gen 0 size is tuned by the Garbage Collector and can change during the execution of the application. At the end of a Gen 0 collection the size of the Gen 0 heap is infact 0 bytes; this counter displays the size (in bytes) of allocations that would trigger the next Gen 0 GC. This counter is updated at the end of a GC; its not updated on every allocation.
3539
This counter displays the current number of bytes in generation 1 (Gen 1); this counter does not display the maximum size of Gen 1. Objects are not directly allocated in this generation; they are promoted from previous Gen 0 GCs. This counter is updated at the end of a GC; its not updated on every allocation.
3541
This counter displays the current number of bytes in generation 2 (Gen 2). Objects are not directly allocated in this generation; they are promoted from Gen 1 during previous Gen 1 GCs. This counter is updated at the end of a GC; its not updated on every allocation.
3543
This counter displays the current size of the Large Object Heap in bytes. Objects greater than 20 KBytes are treated as large objects by the Garbage Collector and are directly allocated in a special heap; they are not promoted through the generations. This counter is updated at the end of a GC; its not updated on every allocation.
3545
This counter displays the number of garbage collected objects that survive a collection because they are waiting to be finalized. If these objects hold references to other objects then those objects also survive but are not counted by this counter; the "Promoted Finalization-Memory from Gen 0" and "Promoted Finalization-Memory from Gen 1" counters represent all the memory that survived due to finalization. This counter is not a cumulative counter; its updated at the end of every GC with count of the survivors during that particular GC only. This counter was designed to indicate the extra overhead that the application might incur because of finalization.
3547
This counter displays the current number of GC Handles in use. GCHandles are handles to resources external to the CLR and the managed environment. Handles occupy small amounts of memory in the GCHeap but potentially expensive unmanaged resources.
3549
This counter displays the rate of bytes per second allocated on the GC Heap. This counter is updated at the end of every GC; not at each allocation. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval.
3551
This counter displays the peak number of times a garbage collection was performed because of an explicit call to GC.Collect. Its a good practice to let the GC tune the frequency of its collections.
3553
% Time in GC is the percentage of elapsed time that was spent in performing a garbage collection (GC) since the last GC cycle. This counter is usually an indicator of the work done by the Garbage Collector on behalf of the application to collect and compact memory. This counter is updated only at the end of every GC and the counter value reflects the last observed value; its not an average.
3555
Not Displayed.
3557
This counter is the sum of four other counters; Gen 0 Heap Size; Gen 1 Heap Size; Gen 2 Heap Size and the Large Object Heap Size. This counter indicates the current memory allocated in bytes on the GC Heaps.
3559
This counter displays the amount of virtual memory (in bytes) currently committed by the Garbage Collector. (Committed memory is the physical memory for which space has been reserved on the disk paging file).
3561
This counter displays the amount of virtual memory (in bytes) currently reserved by the Garbage Collector. (Reserved memory is the virtual memory space reserved for the application but no disk or main memory pages have been used.)
3563
This counter displays the number of pinned objects encountered in the last GC. This counter tracks the pinned objects only in the heaps that were garbage collected e.g. a Gen 0 GC would cause enumeration of pinned objects in the generation 0 heap only. A pinned object is one that the Garbage Collector cannot move in memory.
3565
This counter displays the current number of sync blocks in use. Sync blocks are per-object data structures allocated for storing synchronization information. Sync blocks hold weak references to managed objects and need to be scanned by the Garbage Collector. Sync blocks are not limited to storing synchronization information and can also store COM interop metadata. This counter was designed to indicate performance problems with heavy use of synchronization primitives.
3567
Statistics for CLR Class Loader.
3569
This counter displays the cumulative number of classes loaded in all Assemblies since the start of this application.
3571
Reserved for future use.
3573
Reserved for future use.
3575
This counter displays the peak number of classes that have failed to load since the start of the application. These load failures could be due to many reasons like inadequate security or illegal format. Full details can be found in the profiling services help.
3577
This counter displays the number of classes that failed to load per second. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval. These load failures could be due to many reasons like inadequate security or illegal format. Full details can be found in the profiling services help.
3579
This counter displays the current size (in bytes) of the memory committed by the class loader across all AppDomains. (Committed memory is the physical memory for which space has been reserved on the disk paging file.)
3581
This counter displays the total number of AppDomains unloaded since the start of the application. If an AppDomain is loaded and unloaded multiple times this counter would count each of those unloads as separate.
3583
This counter displays the number of AppDomains unloaded per second. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval.
3585
This counter displays the current number of classes loaded in all Assemblies.
3587
This counter displays the number of classes loaded per second in all Assemblies. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval.
3589
This counter displays the current number of AppDomains loaded in this application. AppDomains (application domains) provide a secure and versatile unit of processing that the CLR can use to provide isolation between applications running in the same process.
3591
This counter displays the peak number of AppDomains loaded since the start of this application. AppDomains (application domains) provide a secure and versatile unit of processing that the CLR can use to provide isolation between applications running in the same process.
3593
This counter displays the number of AppDomains loaded per second. AppDomains (application domains) provide a secure and versatile unit of processing that the CLR can use to provide isolation between applications running in the same process. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval.
3595
This counter displays the current number of Assemblies loaded across all AppDomains in this application. If the Assembly is loaded as domain-neutral from multiple AppDomains then this counter is incremented once only. Assemblies can be loaded as domain-neutral when their code can be shared by all AppDomains or they can be loaded as domain-specific when their code is private to the AppDomain.
3597
This counter displays the total number of Assemblies loaded since the start of this application. If the Assembly is loaded as domain-neutral from multiple AppDomains then this counter is incremented once only. Assemblies can be loaded as domain-neutral when their code can be shared by all AppDomains or they can be loaded as domain-specific when their code is private to the AppDomain.
3599
This counter displays the number of Assemblies loaded across all AppDomains per second. If the Assembly is loaded as domain-neutral from multiple AppDomains then this counter is incremented once only. Assemblies can be loaded as domain-neutral when their code can be shared by all AppDomains or they can be loaded as domain-specific when their code is private to the AppDomain. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval.
3601
Stats for CLR Jit.
3603
This counter displays the total number of methods compiled Just-In-Time (JIT) by the CLR JIT compiler since the start of the application. This counter does not include the pre-jitted methods.
3605
This counter displays the total IL bytes jitted since the start of the application. This counter is exactly equivalent to the "Total # of IL Bytes Jitted" counter.
3607
This counter displays the total IL bytes jitted since the start of the application. This counter is exactly equivalent to the "# of IL Bytes Jitted" counter.
3609
This counter displays the rate at which IL bytes are jitted per second. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval.
3611
This counter displays the peak number of methods the JIT compiler has failed to JIT since the start of the application. This failure can occur if the IL cannot be verified or if there was an internal error in the JIT compiler.
3613
This counter displays the percentage of elapsed time spent in JIT compilation since the last JIT compilation phase. This counter is updated at the end of every JIT compilation phase. A JIT compilation phase is the phase when a method and its dependencies are being compiled.
3615
Not Displayed.
3617
Stats for CLR interop.
3619
This counter displays the current number of Com-Callable-Wrappers (CCWs). A CCW is a proxy for the .NET managed object being referenced from unmanaged COM client(s). This counter was designed to indicate the number of managed objects being referenced by unmanaged COM code.
3621
This counter displays the current number of stubs created by the CLR. Stubs are responsible for marshalling arguments and return values from managed to unmanaged code and vice versa; during a COM Interop call or PInvoke call.
3623
This counter displays the total number of times arguments and return values have been marshaled from managed to unmanaged code and vice versa since the start of the application. This counter is not incremented if the stubs are inlined. (Stubs are responsible for marshalling arguments and return values). Stubs usually get inlined if the marshalling overhead is small.
3625
Reserved for future use.
3627
Reserved for future use.
3629
Stats for CLR Locks and Threads.
3631
This counter displays the total number of times threads in the CLR have attempted to acquire a managed lock unsuccessfully. Managed locks can be acquired in many ways; by the "lock" statement in C# or by calling System.Monitor.Enter or by using MethodImplOptions.Synchronized custom attribute.
3633
Rate at which threads in the runtime attempt to acquire a managed lock unsuccessfully. Managed locks can be acquired in many ways; by the "lock" statement in C# or by calling System.Monitor.Enter or by using MethodImplOptions.Synchronized custom attribute.
3635
This counter displays the total number of threads currently waiting to acquire some managed lock in the application. This counter is not an average over time; it displays the last observed value.
3637
This counter displays the total number of threads that waited to acquire some managed lock since the start of the application.
3639
This counter displays the number of threads per second waiting to acquire some lock in the application. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval.
3641
This counter displays the number of current .NET thread objects in the application. A .NET thread object is created either by new System.Threading.Thread or when an unmanaged thread enters the managed environment. This counters maintains the count of both running and stopped threads. This counter is not an average over time; it just displays the last observed value.
3643
This counter displays the number of native OS threads created and owned by the CLR to act as underlying threads for .NET thread objects. This counters value does not include the threads used by the CLR in its internal operations; it is a subset of the threads in the OS process.
3645
This counter displays the number of threads that are currently recognized by the CLR; they have a corresponding .NET thread object associated with them. These threads are not created by the CLR; they are created outside the CLR but have since run inside the CLR at least once. Only unique threads are tracked; threads with same thread ID re-entering the CLR or recreated after thread exit are not counted twice.
3647
This counter displays the total number of threads that have been recognized by the CLR since the start of this application; these threads have a corresponding .NET thread object associated with them. These threads are not created by the CLR; they are created outside the CLR but have since run inside the CLR at least once. Only unique threads are tracked; threads with same thread ID re-entering the CLR or recreated after thread exit are not counted twice.
3649
This counter displays the number of threads per second that have been recognized by the CLR; these threads have a corresponding .NET thread object associated with them. These threads are not created by the CLR; they are created outside the CLR but have since run inside the CLR at least once. Only unique threads are tracked; threads with same thread ID re-entering the CLR or recreated after thread exit are not counted twice. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval.
3651
Stats for CLR Security.
3653
This counter displays the total number of runtime Code Access Security (CAS) checks performed since the start of the application. Runtime CAS checks are performed when a caller makes a call to a callee demanding a particular permission; the runtime check is made on every call by the caller; the check is done by examining the current thread stack of the caller. This counter used together with "Stack Walk Depth" is indicative of performance penalty for security checks.
3655
Reserved for future use.
3657
This counter displays the total number of linktime Code Access Security (CAS) checks since the start of the application. Linktime CAS checks are performed when a caller makes a call to a callee demanding a particular permission at JIT compile time; linktime check is performed once per caller. This count is not indicative of serious performance issues; its indicative of the security system activity.
3659
This counter displays the percentage of elapsed time spent in performing runtime Code Access Security (CAS) checks since the last such check. CAS allows code to be trusted to varying degrees and enforces these varying levels of trust depending on code identity. This counter is updated at the end of a runtime security check; it represents the last observed value; its not an average.
3661
Not Displayed.
3663
This counter displays the depth of the stack during that last runtime Code Access Security check. Runtime Code Access Security check is performed by crawling the stack. This counter is not an average; it just displays the last observed value.
3665
Stats for CLR Remoting.
3667
This counter displays the number of remote procedure calls invoked per second. A remote procedure call is a call on any object outside the caller;s AppDomain. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval.
3669
This counter displays the total number of remoting channels registered across all AppDomains since the start of the application. Channels are used to transport messages to and from remote objects.
3671
This counter displays the total number of remoting proxy objects created in this process since the start of the process. Proxy object acts as a representative of the remote objects and ensures that all calls made on the proxy are forwarded to the correct remote object instance.
3673
This counter displays the current number of context-bound classes loaded. Classes that can be bound to a context are called context-bound classes; context-bound classes are marked with Context Attributes which provide usage rules for synchronization; thread affinity; transactions etc.
3675
This counter displays the number of context-bound objects allocated per second. Instances of classes that can be bound to a context are called context-bound objects; context-bound classes are marked with Context Attributes which provide usage rules for synchronization; thread affinity; transactions etc. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval.
3677
This counter displays the current number of remoting contexts in the application. A context is a boundary containing a collection of objects with the same usage rules like synchronization; thread affinity; transactions etc.
3679
This counter displays the total number of remote procedure calls invoked since the start of this application. A remote procedure call is a call on any object outside the caller;s AppDomain.
3681
Runtime statistics on CLR exception handling.
3683
This counter displays the total number of exceptions thrown since the start of the application. These include both .NET exceptions and unmanaged exceptions that get converted into .NET exceptions e.g. null pointer reference exception in unmanaged code would get re-thrown in managed code as a .NET System.NullReferenceException; this counter includes both handled and unhandled exceptions. Exceptions that are re-thrown would get counted again. Exceptions should only occur in rare situations and not in the normal control flow of the program.
3685
This counter displays the number of exceptions thrown per second. These include both .NET exceptions and unmanaged exceptions that get converted into .NET exceptions e.g. null pointer reference exception in unmanaged code would get re-thrown in managed code as a .NET System.NullReferenceException; this counter includes both handled and unhandled exceptions. Exceptions should only occur in rare situations and not in the normal control flow of the program; this counter was designed as an indicator of potential performance problems due to large (>100s) rate of exceptions thrown. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval.
3687
This counter displays the number of .NET exception filters executed per second. An exception filter evaluates whether an exception should be handled or not. This counter tracks the rate of exception filters evaluated; irrespective of whether the exception was handled or not. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval.
3689
This counter displays the number of finally blocks executed per second. A finally block is guaranteed to be executed regardless of how the try block was exited. Only the finally blocks that are executed for an exception are counted; finally blocks on normal code paths are not counted by this counter. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval.
3691
This counter displays the number of stack frames traversed from the frame that threw the .NET exception to the frame that handled the exception per second. This counter resets to 0 when an exception handler is entered; so nested exceptions would show the handler to handler stack depth. This counter is not an average over time; it displays the difference between the values observed in the last two samples divided by the duration of the sample interval.
3693
Counters for System.Data.OracleClient
3695
The number of actual connections per second that are being made to servers
3697
The number of actual disconnects per second that are being made to servers
3699
The number of connections we get from the pool per second
3701
The number of connections we return to the pool per second
3703
The number of connections that are not using connection pooling
3705
The number of connections that are managed by the connection pooler
3707
The number of unique connection strings
3709
The number of unique connection strings waiting for pruning
3711
The number of active connection pools
3713
The number of inactive connection pools
3715
The number of connections currently in-use
3717
The number of connections currently available for use
3719
The number of connections currently waiting to be made ready for use
3721
The number of connections we reclaim from GCed external connections
3723
Counters for the Windows Search Service Gatherer Project object
3725
The number of add notifications.
3727
The number of document additions per second.
3729
The number of delete notifications.
3731
The number of document deletes per second.
3733
The number of modify notifications.
3735
The number of modify notifications per second.
3737
The number of documents waiting to be processed. When this number goes to zero the catalog is idle. This number indicates the total queue size of unprocessed documents in the gatherer.
3739
The number of documents in progress.
3741
The number of documents on hold because a document with the same URL is currently in process.
3743
The number of documents delayed due to site hit frequency rules.
3745
The number of files (URLs) in the history list. This indicates the total size of your document corpus that was indexed.
3747
The number of documents processed since the history has been reset.
3749
The number of documents processed per second.
3751
The number of successfully filtered documents.
3753
The number of successfully filtered documents per second.
3755
The number of filtered documents which returned an error.
3757
The number of filtered documents which returned an error per second.
3763
The number of file protocol errors received while getting documents.
3765
The number of file protocol errors received per second.
3771
The number of documents accessed via file system.
3773
The number of documents accessed via file system per second.
3779
The number of office documents filtered.
3781
The number of office documents filtered per second.
3783
The number of text documents filtered.
3785
The number of text documents filtered per second.
3787
Number of crawls in progress.
3789
The Gatherer paused flag indicates if the Gatherer has been paused.
3791
The recovery in progress flag indicates if recovery is currently in progress. Indexing will not be resumed until this flag is off.
3793
The number of documents which were not filtered because no modification was detected since the last crawl.
3795
The Iterating history in progress flag indicates if the Gatherer is currently iterating over the URL history.
3797
Number of incremental crawls in progress.
3799
The number of documents currently being filtered.
3801
The number of documents initiated into the Gatherer service. This includes the number of documents on hold, in the active queue, and currently filtered. When this number goes to zero during a crawl, it means the crawl will be done soon.
3803
The total number of times a document access has been retried. Having this number high may indicate a problem with accessing the data.
3805
The number of retries per second.
3813
Documents incorrectly rejected by adaptive crawl
3819
Documents which have changed since the last crawl
3821
The number of Move/Rename notifications.
3823
The number of document Moves and Renames per second.
3825
Number of unique documents in the system. Documents are considered not unique if their contents is the same.
3827
Percentage of the history recovery completed
3829
Counters for the Windows Search Service Gathering service object
3831
Currently connected external notification sources.
3833
The total number of notifications received from all notification sources excluding file system.
3835
The rate of external notifications received per second.
3837
The number of currently connected administrative clients.
3839
The total number of heartbeats counted since startup. A heartbeat occurs once every 10 seconds while the service is running. If the service is not running there will be no heartbeat and the number of ticks will not be incremented.
3841
Displays one heartbeat every 10 seconds.
3843
The total number of filtering threads in the system. This number is calculated based on your system resources.
3845
The number of threads waiting for documents.
3847
The number of document entries currently in memory. Zero means no indexing activity is going on.
3849
Indicates the level of the amount of system resources that the Gatherer service is allowed to use.
3851
The number of documents waiting for robot threads. If this number is not 0, all threads should be filtering.
3853
The number of filtering processes in the system.
3855
The maximum number of filtering processes that have existed in the system since startup.
3857
The total number of times a filter process was created or restarted. Having too many filter processes created indicates that filtering is having trouble with the data in the documents.
3859
The number of documents delayed due to site hit frequency rules.
3861
The number of servers recently accessed by the system.
3863
The number of times a new server object had to be created.
3865
The number of filter objects in the system. Each filter object corresponds to a URL currently being filtered.
3867
The number of times a filter object was created. This corresponds to the total number of documents filtered in the system since startup.
3869
The number of documents filtered per second.
3871
The total number of timeouts detected by the system since startup.
3873
A server becomes unavailable when a number of requests to that server time out.
3875
A server becomes unavailable when a number of requests to that server time out.
3877
The number of threads waiting for a response from the filter process. If no activity is going on and this number is equal to number of filtering threads, it may indicate a network problem or unavailability of the server it is crawling.
3879
The number of threads waiting for plug-ins to complete an operation.
3881
The number of documents successfully filtered.
3883
The number of successfully filtered documents per second.
3885
The number of documents that will be retried after time-out. When this is non-zero, it means that the local server it is crawling is shut down.
3887
Number of available cached word breakers instances
3889
Number of available cached stemmer instances. Too many may indicate a resource usage problem.
3891
The total number of notifications received from all notification sources including file system.
3893
The rate of external notifications received per second.
3895
System IO (disk) traffic rate in KB/s detected by back off logic
3897
The code describing why the Gatherer service went into back off state. 0 - up and running 1 - high system IO traffic 2 - high notifications rate 3 - delayed recovery in progress (not implemented) 4 - back off due to user activity 5 - Battery Low 6 - Memory Low 99 - back off for some internal reason (forced by Search itself) While backing off, no indexing is performed. To resume the indexing you must eliminate the reason for back off. If the Gatherer service is in back off state, the Search service is paused and there is a message in the event log.
3899
The number of threads blocked due to back off event
3901
Indexer PlugIn statistics
3903
The level of the master index.
3905
Number of Master Merges to Date
3907
Master Merge Progress
3909
Shadow Merge Levels
3911
Shadow Merge Levels Threshold
3913
Number of Persistent Indexes
3915
Size of Index
3917
Number of Unique Keys
3919
Number of Documents Filtered
3921
Number of invalidator work items that were created
3923
Number of invalidator work items that were deleted
3925
Number of clean WidSets
3927
Number of dirty WidSets
3929
Indicator if a master merge is going on.
3931
Active Connections
3933
Number of Queries
3935
Number of Queries Failed
3937
Number of Queries Succeeded
3939
The number of L0 Indexes (Wordlists)
3941
The number of L0 merges (flushes) in progress at any one moment.
3943
The average value [documents/hour] computed for the speed of L0 merges (flushes) since the catalog has been loaded
3945
The number of L0 merges (flushes) since the catalog was loaded
3947
The last value [documents/hour] computed for the speed of L0 merges (flushes).
3949
The number of L1 Indexes
3951
The number of L1 merges in progress at any one moment.
3953
The average value [documents/hour] computed for the speed of L1 merges since the catalog has been loaded
3955
The number of L1 merges since the catalog was loaded
3957
The last value [documents/hour] computed for the speed of L1 merges.
3959
The number of L2 Indexes
3961
The number of L2 merges in progress at any one moment.
3963
The average value [documents/hour] computed for the speed of L2 merges since the catalog has been loaded
3965
The number of L2 merges since the catalog was loaded
3967
The last value [documents/hour] computed for the speed of L2 merges.
3969
The number of L3 Indexes
3971
The number of L3 merges in progress at any one moment.
3973
The average value [documents/hour] computed for the speed of L3 merges since the catalog has been loaded
3975
The number of L3 merges since the catalog was loaded
3977
The last value [documents/hour] computed for the speed of L3 merges.
3979
The number of L4 Indexes
3981
The number of L4 merges in progress at any one moment.
3983
The average value [documents/hour] computed for the speed of L4 merges since the catalog has been loaded
3985
The number of L4 merges since the catalog was loaded
3987
The last value [documents/hour] computed for the speed of L4 merges.
3989
The number of L5 Indexes
3991
The number of L5 merges in progress at any one moment.
3993
The average value [documents/hour] computed for the speed of L5 merges since the catalog has been loaded
3995
The number of L5 merges since the catalog was loaded
3997
The last value [documents/hour] computed for the speed of L5 merges.
3999
The number of L6 Indexes
4001
The number of L6 merges in progress at any one moment.
4003
The average value [documents/hour] computed for the speed of L6 merges since the catalog has been loaded
4005
The number of L6 merges since the catalog was loaded
4007
The last value [documents/hour] computed for the speed of L6 merges.
4009
The number of L7 Indexes
4011
The number of L7 merges in progress at any one moment.
4013
The average value [documents/hour] computed for the speed of L7 merges since the catalog has been loaded
4015
The number of L7 merges since the catalog was loaded
4017
The last value [documents/hour] computed for the speed of L7 merges.
4019
The number of L8 Indexes
4021
The number of L8 merges in progress at any one moment.
4023
The average value [documents/hour] computed for the speed of L8 merges since the catalog has been loaded
4025
The number of L8 merges since the catalog was loaded
4027
The last value [documents/hour] computed for the speed of L8 merges.
4029
Performance Counters for the Peer Networking Resolution Protocol
4031
Number of IDs registered in the Peer Networking Resolution Protocol
4033
Number of resolves made in the Peer Networking Resolution Protocol
4035
Average outbound bandwidth utilization of the Peer Networking Resolution Protocol, in terms of bytes sent per second
4037
Average inbound bandwidth utilization of the Peer Networking Resolution Protocol, in terms of bytes received per second
4039
Stale cache entry hits in the Peer Networking Resolution Protocol
4041
ServiceModelOperation 3.0.0.0 performance counters
4043
The number of calls to this operation. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.Calls.aspx
4045
The number of calls to this operation per second. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.CallsPerSecond.aspx
4047
The number of calls to this operation that are in progress. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.CallsOutstanding.aspx
4049
The number of calls with unhandled exceptions in this operation. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.CallsFailed.aspx
4051
The number of calls with unhandled exceptions in this operation per second. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.CallsFailedPerSecond.aspx
4053
The number of calls to this operation that returned faults. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.CallsFaulted.aspx
4055
The number of calls to this operation that returned faults per second. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.CallsFaultedPerSecond.aspx
4057
The average duration of calls to this operation. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.CallDuration.aspx
4059
Base counter for the 'Calls Duration' counter.
4061
The number of transactions that flowed to this operation. This counter is incremented any time a transaction ID is present in the message sent to the operation. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.TxFlowed.aspx
4063
The number of transactions that flowed to this operation per second. This counter is incremented any time a transaction ID is present in the message sent to the operation. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.TxFlowedPerSecond.aspx
4065
The number of calls to this operation that failed validation or authentication. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.SecurityValidationAuthenticationFailures.aspx
4067
The number of calls to this operation that failed validation or authentication per second. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.SecurityValidationAuthenticationFailuresPerSecond.aspx
4069
The number of calls to this operation that failed authorization. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.SecurityCallsNotAuthorized.aspx
4071
The number of calls to this operation that failed authorization per second. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.SecurityCallsNotAuthorizedPerSecond.aspx
4073
ServiceModelEndpoint 3.0.0.0 performance counters
4075
The number of calls to this endpoint. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.Calls.aspx
4077
The number of calls to this endpoint per second. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.CallsPerSecond.aspx
4079
The number of calls to this endpoint that are in progress. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.CallsOutstanding.aspx
4081
The number of calls with unhandled exceptions at this endpoint. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.CallsFailed.aspx
4083
The number of calls with unhandled exceptions at this endpoint per second. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.CallsFailedPerSecond.aspx
4085
The number of calls to this endpoint that returned faults. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.CallsFaulted.aspx
4087
The number of calls to this endpoint that returned faults per second. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.CallsFaultedPerSecond.aspx
4089
The average duration of calls to this endpoint. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.CallDuration.aspx
4091
Base counter for the 'Calls Duration' counter.
4093
The number of transactions that flowed to operations at this endpoint. This counter is incremented any time a transaction ID is present in the message that is sent to the endpoint. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.TxFlowed.aspx
4095
The number of transactions that flowed to operations at this endpoint per second. This counter is incremented any time a transaction ID is present in the message that is sent to the endpoint. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.TxFlowedPerSecond.aspx
4097
The number of calls to this endpoint that failed validation or authentication. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.SecurityValidationAuthenticationFailures.aspx
4099
The number of calls to this endpoint that failed validation or authentication per second. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.SecurityValidationAuthenticationFailuresPerSecond.aspx
4101
The number of calls to this endpoint that failed authorization. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.SecurityCallsNotAuthorized.aspx
4103
The number of calls to this endpoint that failed authorization per second. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.SecurityCallsNotAuthorizedPerSecond.aspx
4105
The number of reliable messaging sessions that faulted at this endpoint. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.RMSessionsFaulted.aspx
4107
The number of reliable messaging sessions that faulted at this endpoint per second. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.RMSessionsFaultedPerSecond.aspx
4109
The number of reliable messaging messages that were dropped at this endpoint. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.RMMessagesDropped.aspx
4111
The number of reliable messaging messages that were dropped at this endpoint per second. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.RMMessagesDroppedPerSecond.aspx
4113
Displays performance statistics about the ReadyBoost Cache
4115
The number of bytes read from the cache per second.
4117
The number of bytes read from the volume per second.
4119
The number of bytes written to the volume per second.
4121
The number of read bytes serviced from the update buffers per second.
4123
The total (uncompressed) amount of data currently stored in the cache.
4125
The number of bytes invalidated in update buffers per second.
4127
The number of reads from the cache per second.
4129
(Actual size of data in cache) / (Uncompressed size of data in cache)
4131
The number of I/Os not serviced by the cache due to sequentiality per second.
4133
The number of I/Os not serviced by the cache because the size is bigger than the maximum read size per second.
4135
Writes rescheduled due to the lack of regions per second.
4137
Writes rescheduled due to the lack of update buffers per second.
4139
The number of blocks in update buffers invalidated per second.
4221
SMSvcHost 3.0.0.0 performance counters
4223
The total number of failures at the protocol layer of net.tcp.
4225
The total number of failures at the protocol layer of net.pipe.
4227
The total number of failures dispatching messages received over net.tcp.
4229
The total number of failures dispatching messages received over net.pipe.
4231
The total number of connections dispatched over net.tcp.
4233
The total number of connections dispatched over net.pipe.
4235
The total number of TCP connections accepted over net.tcp.
4237
The total number of named pipe connections accepted over net.pipe.
4239
The number of uri registrations currently active for net.tcp.
4241
The number of uri registrations currently active for net.pipe.
4243
The total number of uris that were succesfully registered for net.tcp.
4245
The total number of uris that were succesfully registered for net.pipe.
4247
The total number of uris that were succesfully unregistered for net.tcp.
4249
The total number of uris that were succesfully unregistered for net.pipe.
4251
MSDTC Bridge 3.0.0.0 performance counters
4253
The number of WS-AT protocol messages that the WS-AT service failed to send per second.
4255
The number of Prepare retry messages that the WS-AT service has sent per second.
4257
The number of Commit retry messages that the WS-AT service has sent per second.
4259
The number of Prepared retry messages that the WS-AT service has sent per second.
4261
The number of Replay retry messages that the WS-AT service has sent per second.
4263
The number of Fault messages that the WS-AT service has received per second.
4265
The number of Fault messages that the WS-AT service has sent per second.
4267
Average time in milliseconds for the WS-AT service to receive a Prepare message response from a participant.
4269
Base counter for the 'Average participant prepare response time' counter.
4271
Average time in milliseconds for the WS-AT service to receive a Commit message response from a participant.
4273
Base counter for the 'Average participant commit response time' counter.
4275
ServiceModelService 3.0.0.0 performance counters
4277
The number of calls to this service. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.Calls.aspx
4279
The number of calls to this service per second. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.CallsPerSecond.aspx
4281
The number of calls to this service that are in progress. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.CallsOutstanding.aspx
4283
The number of calls with unhandled exceptions in this service. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.CallsFailed.aspx
4285
The number of calls with unhandled exceptions in this service per second. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.CallsFailedPerSecond.aspx
4287
The number of calls to this service that returned faults. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.CallsFaulted.aspx
4289
The number of calls to this service that returned faults per second. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.CallsFaultedPerSecond.aspx
4291
The average duration of calls to this service. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.CallDuration.aspx
4293
Base counter for the 'Calls Duration' counter.
4295
The number of transactions that flowed to operations in this service. This counter is incremented any time a transaction ID is present in the message that is sent to the service. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.TxFlowed.aspx
4297
The number of transactions that flowed to operations in this service per second. This counter is incremented any time a transaction ID is present in the message that is sent to the service. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.TxFlowedPerSecond.aspx
4299
The number of transacted operations with the outcome committed in this service. Work done under such operations is fully committed. Resources are updated in accordance with the work done in the operation. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.TxCommitted.aspx
4301
The number of transacted operations with the outcome committed in this service per second. Work done under such operations is fully committed. Resources are updated in accordance with the work done in the operation. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.TxCommittedPerSecond.aspx
4303
The number of transacted operations with the outcome aborted in this service. Work done under such operations is rolled back. Resources are reverted to their previous state. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.TxAborted.aspx
4305
The number of transacted operations with the outcome aborted in this service per second. Work done under such operations is rolled back. Resources are reverted to their previous state. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.TxAbortedPerSecond.aspx
4307
The number of transacted operations with an outcome in doubt in this service. Work done with an outcome in doubt is in an indeterminate state. Resources are held pending outcome. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.TxInDoubt.aspx
4309
The number of transacted operations with an outcome in doubt in this service per second. Work done with an outcome in doubt is in an indeterminate state. Resources are held pending outcome. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.TxInDoubtPerSecond.aspx
4311
The number of calls to this service that failed validation or authentication. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.SecurityValidationAuthenticationFailures.aspx
4313
The number of calls to this service that failed validation or authentication per second. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.SecurityValidationAuthenticationFailuresPerSecond.aspx
4315
The number of calls to this service that failed authorization. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.SecurityCallsNotAuthorized.aspx
4317
The number of calls to this service that failed authorization per second. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.SecurityCallsNotAuthorizedPerSecond.aspx
4319
The total number of instances of the service. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.Instances.aspx
4321
The creation rate of service instances per second. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.InstancesPerSecond.aspx
4323
The number of reliable messaging sessions that were faulted in this service. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.RMSessionsFaulted.aspx
4325
The number of reliable messaging sessions that were faulted in this service per second. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.RMSessionsFaultedPerSecond.aspx
4327
The number of reliable messaging messages that were dropped in this service. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.RMMessagesDropped.aspx
4329
The number of reliable messaging messages that were dropped in this service per second. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.RMMessagesDroppedPerSecond.aspx
4331
The number of messages to this service that were marked poisoned by the queued transport. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.MsmqPoisonMessages.aspx
4333
The number of messages to this service that were marked poisoned by the queued transport per second. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.MsmqPoisonMessagesPerSecond.aspx
4335
The number of messages to this servcie that were rejected by the queued transport. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.MsmqRejectedMessages.aspx
4337
The number of messages to this service that were rejected by the queued transport per second. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.MsmqRejectedMessagesPerSecond.aspx
4339
The number of messages to this service that were dropped by the queued transport. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.MsmqDroppedMessages.aspx
4341
The number of messages to this service that were dropped by the queued transport per second. http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.MsmqDroppedMessagesPerSecond.aspx
4343
Windows Workflow Foundation Performance Counters
4345
Total number of workflows created.
4347
Rate of workflows created per second.
4349
Total number of workflows unloaded.
4351
Rate of workflows unloaded per second.
4353
Total number of workflows loaded.
4355
Rate of workflows loaded per second.
4357
Total number of workflows completed.
4359
Rate of workflows completed per second.
4361
Total number of workflows suspended.
4363
Rate of workflows suspended per second.
4365
Total number of workflows terminated.
4367
Rate of workflows terminated per second.
4369
Total number of workflows in memory.
4371
Total number of workflows aborted.
4373
Rate of workflows aborted per second.
4375
Total number of workflows persisted.
4377
Rate of workflows persisted per second.
4379
Total number of workflow instances actively executing.
4381
Rate of workflows becoming idle per second.
4383
Total number of workflows ready to execute.
4385
Total number of workflows waiting for a thread.
4387
Flow statistics from the packet scheduler
4389
Pipe statistics from the packet scheduler
4391
The number of packets dropped by the packet scheduler
4393
The number of packets which got scheduled in some way (rather than just being directly sent to the underlying miniport)
4395
The number of packets from this flow which have been sent
4397
The average number of packets in the shaper over the last sampling period
4399
The maximum number of packets that have ever simultaneously been in the shaper
4401
The average number of packets in the sequencer over the last sampling period
4403
The maximum number of packets that have ever simultaneously been in the sequencer
4405
The number of bytes which got scheduled in some way (rather than just being directly sent to the underlying miniport)
4407
The number of bytes from this flow which have been sent
4409
The number of bytes per second from this flow which have been sent
4411
The number of bytes per second from this flow which have been scheduled
4413
The number of packets per second from this flow which have been sent
4415
The number of packets per second from this flow which have been scheduled
4417
The number of packets dropped by the packet scheduler from this flow per second
4419
The number of packets that have entered the packet scheduler at a rate which exceeded the flow parameters
4421
The rate at which nonconforming packets have entered the packet scheduler
4423
The number of packets that have been sent by the packet scheduler at a rate which exceeded the flow parameters
4425
The rate at which nonconforming packets have been sent by the packet scheduler
4427
The maximum number of packets that have been queued in the netcard by this flow.
4429
The average number of packets that have been queued in the netcard by this flow.
4431
The number of times Pacer has been unable to allocate a packet
4433
The number of flows opened on this pipe (some of which may now be closed)
4435
The number of flows that have been closed
4437
The number of flow creations that were rejected
4439
The of times a flow has been modified
4441
The number of times a flow modification has been rejected
4443
The maximum number of flows that have been simultaneously open on this pipe
4445
The number of packets that have entered the packet scheduler at a rate which exceeded that packet's flow parameters
4447
The rate at which nonconforming packets have entered the packet scheduler
4449
The number of packets that have been sent by the packet scheduler at a rate which exceeded that packet's flow parameters
4451
The rate at which nonconforming packets have been sent by the packet scheduler
4453
The average number of packets in the shaper over the last sampling period
4455
The maximum number of packets that have ever simultaneously been in the shaper
4457
The average number of packets in the sequencer over the last sampling period
4459
The maximum number of packets that have ever simultaneously been in the sequencer
4461
The maximum number of packets ever simultaneously in the network card
4463
The average number of packets in the network card over the last sampling period
4713
Terminal Services per-session resource monitoring.
4715
Number of bytes input on this session after all protocol overhead has been removed.
4717
The number of frames input after any additional protocol added frames have been removed.
4719
The number of times that a wait for an available send buffer was done by the protocols on the client side of the connection.
4721
Number of frames (packets) input on this Session.
4723
Number of bytes input on this session that includes all protocol overhead.
4725
Number of bytes input after compression. This number compared with the Total Bytes input is the compression ratio.
4727
Number of input compression dictionary flushes. When the data can not be compressed, the compression dictionary is flushed so that newer data has a better chance of being compressed. Some causes of data not compressing includes transferring compressed files over Client Drive Mapping.
4729
Number of input errors of all types. Some example input errors are lost ACK's, badly formed packets, etc.
4731
The total number of timeouts on the communication line as seen from the client side of the connection. These are typically the result of a noisy line. On some high latency networks, this could be the result of the protocol timeout being too short. Increasing the protocol timeout on these types of lines will improve performance by reducing needless re-transmissions.
4733
Number of input async framing errors. These can be caused by a noisy transmission line. Using a smaller packet size may help in some cases.
4735
Number of input async overrun errors. These can be caused by the baud rate being faster than the computer can handle, or a non-16550 serial line is used. Overruns can also occur if too many high speed serial lines are active at one time for the processor's power.
4737
Number of input async overflow errors. These can be caused by a lack of buffer space available on the host.
4739
Number of input async parity errors. These can be caused by a noisy transmission line
4741
Number of Terminal Services transport-level errors on input.
4743
Number of bytes output on this session after all protocol overhead has been removed.
4745
The number of frames output before any additional protocol frames have been added.
4747
This is the number of times that a wait for an available send buffer was done by the protocol on the server side of the connection.
4749
Number of frames (packets) output on this session.
4751
Number of bytes output on this Session that includes all protocol overhead.
4753
Number of bytes output after compression. This number compared with the Total Bytes output is the compression ratio.
4755
Number of output compression dictionary flushes. When the data can not be compressed, the compression dictionary is flushed so that newer data has a better chance of being compressed. Some causes of data not compressing includes transfering compressed files over Client Drive Mapping.
4757
Number of output errors of all types. Some example output errors are lost ACK's, badly formed packets, etc.
4759
The total number of timeouts on the communication line from the host side of the connection. These are typically the result of a noisy line. On some high latency networks, this could be the result of the protocol timeout being too short. Increasing the protocol timeout on these types of lines will improve performance by reducing needless re-transmissions.
4761
Number of output async framing errors. This could be caused by a hardware or line problem.
4763
Number of output async overrun errors.
4765
Number of output async overflow errors.
4767
Number of output async parity errors. These can be caused by a hardware or line problem.
4769
Number of Terminal Services transport-level errors on output.
4771
Total number of bytes on this Session after all protocol overhead has been removed.
4773
The total number of frames input and output before any additional protocol frames have been added.
4775
The number of times that a wait for an available send buffer was done by the protocols on both the server and client sides of the connection.
4777
Total number of frames (packets) on this Session.
4779
Total number of bytes on this Session that includes all protocol overhead.
4781
Total number of bytes after compression. This number compared with the total bytes is the compression ratio.
4783
Total number of compression dictionary flushes. When the data can not be compressed, the compression dictionary is flushed so that newer data has a better chance of being compressed. Some causes of data not compressing includes transfering compressed files over Client Drive Mapping.
4785
Total number of errors of all types. Some example errors are lost ACK's, badly formed packets, etc.
4787
The total number of timeouts on the communication line from both the host and client sides of the connection. These are typically the result of a noisy line. On some high latency networks, this could be the result of the protocol timeout being too short. Increasing the protocol timeout on these types of lines will improve performance by reducing needless re-transmissions.
4789
Total number of async framing errors. These can be caused by a noisy transmission line. Using a smaller packet size may help in some cases.
4791
Total number of async overrun errors. These can be caused by the baud rate being faster than the computer can handle, or a non-16550 serial line is used. Overruns can also occur if too many high speed serial lines are active at one time for the processor's power.
4793
Total number of async overflow errors. These can be caused by a lack of buffer space available on the host.
4795
Total number of async parity errors. These can be caused by a noisy transmission line.
4797
Total number of Terminal Services transport-level errors.
4799
Total references to all protocol caches.
4801
Total hits in all protocol caches. The protocol caches Windows objects that are likely to be re-used to avoid having to re-send them on the transmission line. Example objects are Windows icons and brushes. Hits in the cache represent objects that did not need to be re-sent.
4803
Overall hit ratio for all protocol caches.
4805
Number of references to the protocol bitmap cache.
4807
Number of hits in the protocol bitmap cache.
4809
Hit ratio in the protocol bitmap cache. A higher hit ratio means better performance since data transmissions are reduced. Low hit ratios are due to the screen updating with new information that is either not re-used, or is flushed out of the client cache.
4811
Number of references to the protocol glyph cache.
4813
Number of hits in the protocol glyph cache.
4815
Hit ratio in the protocol glyph cache. A higher hit ratio means better performance since data transmissions are reduced. Low hit ratios are due to the screen updating with new information that is either not re-used, or is flushed out of the client cache.
4817
Number of references to the protocol brush cache.
4819
Number of hits in the protocol brush cache.
4821
Hit ratio in the protocol brush cache. A higher hit ratio means better performance since data transmissions are reduced. Low hit ratios are due to the screen updating with new information that is either not re-used, or is flushed out of the client cache.
4823
Number of references to the protocol save screen bitmap cache.
4825
Number of hits in the protocol save screen bitmap cache.
4827
Hit ratio in the protocol save screen bitmap cache. A higher hit ratio means better performance since data transmissions are reduced. Low hit ratios are due to the screen updating with new information that is either not re-used, or is flushed out of the client cache.
4829
Compression ratio of the server input data stream.
4831
Compression ratio of the server output data stream.
4833
Total compression ratio of the server data stream.
5117
The Web Service object includes counters specific to the World Wide Web Publishing Service.
5119
Total Bytes Sent is the number of data bytes that have been sent by the Web service (since service startup).
5121
Bytes Sent/sec is the rate data bytes are being sent by the Web service.
5123
Total Bytes Received is the number of data bytes that have been received by the Web service (since service startup).
5125
Bytes Received/sec is the rate that data bytes are received by the Web service.
5127
Total bytes either received or sent by the Web service (since service startup).
5129
Bytes Total/sec is the sum of Bytes Sent/sec and Bytes Received/sec. This is the total rate of bytes transferred by the Web service.
5131
Total Files Sent is the total number of files sent by the Web service (since service startup).
5133
The rate files are sent by the Web service.
5135
Total Files Received is the total number of files received by the Web service (since service startup).
5137
The rate files are received by the Web service.
5139
Total Files Transferred is the sum of Files Sent and Files Received (since service startup).
5141
The rate files are transferred, that is, sent and received by the Web service.
5143
Current Anonymous Users is the number of users who currently have an anonymous connection using the Web service.
5145
Current NonAnonymous Users is the number of users who currently have a non-anonymous connection using the Web service.
5147
Total Anonymous Users is the total number of users who established an anonymous connection with the Web service (since service startup).
5149
The rate users are making anonymous connections to the Web service.
5151
Total NonAnonymous Users is the total number of users who established a non-anonymous connection with the Web service (since service startup).
5153
The rate users are making non-anonymous connections to the Web service.
5155
Maximum Anonymous Users is the maximum number of users who established concurrent anonymous connections using the Web service (since service startup).
5157
Maximum NonAnonymous Users is the maximum number of concurrent non-anonymous connections to the Web service (since service startup).
5159
Current Connections is the current number of connections established with the Web service.
5161
Maximum Connections is the maximum number of concurrent connections established with the Web service (since service startup).
5163
Total Connection Attempts is the number of connections that have been attempted using the Web service (since service startup). This counter is for all instances listed.
5165
The rate that connections to the Web service are being attempted.
5167
Total Logon Attempts is the number of logons attempts to the Web Service (since service startup).
5169
The rate that logons to the Web service are being attempted.
5171
Total Options Requests is the number of HTTP requests using the OPTIONS method (since service startup).
5173
The rate HTTP requests using the OPTIONS method are made.
5175
Total Get Requests is the number of HTTP requests using the GET method (since service startup). Get requests are the most common HTTP request.
5177
The rate HTTP requests using the GET method are made. Get requests are the most common HTTP request.
5179
Total Post Requests is the number of HTTP requests using the POST method (since service startup).
5181
The rate HTTP requests using the POST method are made.
5183
Total Head Requests is the number of HTTP requests using the HEAD method (since service startup). Head requests generally indicate a client is querying the state of a document they already have to see if it needs to be refreshed.
5185
The rate HTTP requests using the HEAD method are made. Head requests generally indicate a client is querying the state of a document they already have to see if it needs to be refreshed.
5187
Total Put Requests is the number of HTTP requests using the PUT method (since service startup).
5189
The rate HTTP requests using the PUT method are made.
5191
Total Delete Requests is the number of HTTP requests using the DELETE method (since service startup). Delete requests are generally used for file removals.
5193
The rate HTTP requests using the DELETE method are made. Delete requests are generally used for file removals.
5195
Total Trace Requests is the number of HTTP requests using the TRACE method (since service startup). Trace requests allow the client to see what is being received at the end of the request chain and use the information for diagnostic purposes.
5197
The rate HTTP requests using the TRACE method are made. Trace requests allow the client to see what is being received at the end of the request chain and use the information for diagnostic purposes.
5199
Total Move Requests is the number of HTTP requests using the MOVE method (since service startup). Move requests are used for moving files and directories.
5201
The rate HTTP requests using the MOVE method are made. Move requests are used for moving files and directories.
5203
Total Copy Requests is the number of HTTP requests using the COPY method (since service startup). Copy requests are used for copying files and directories.
5205
The rate HTTP requests using the COPY method are made. Copy requests are used for copying files and directories.
5207
Total Mkcol Requests is the number of HTTP requests using the MKCOL method (since service startup). Mkcol requests are used to create directories on the server.
5209
The rate HTTP requests using the MKCOL method are made. Mkcol requests are used to create directories on the server.
5211
Total Propfind Requests is the number of HTTP requests using the PROPFIND method (since service startup). Propfind requests retrieve property values on files and directories.
5213
The rate HTTP requests using the PROPFIND method are made. Propfind requests retrieve property values on files and directories.
5215
Total Proppatch Requests is the number of HTTP requests using the PROPPATCH method (since service startup). Proppatch requests set property values on files and directories.
5217
The rate HTTP requests using the PROPPATCH method are made. Proppatch requests set property values on files and directories.
5219
Total Search Requests is the number of HTTP requests using the SEARCH method (since service startup). Search requests are used to query the server to find resources that match a set of conditions provided by the client.
5221
The rate HTTP requests using the SEARCH method are made. Search requests are used to query the server to find resources that match a set of conditions provided by the client.
5223
Total Lock Requests is the number of HTTP requests using the LOCK method (since service startup). Lock requests are used to lock a file for one user so that only that user can modify the file.
5225
The rate HTTP requests using the LOCK method are made. Lock requests are used to lock a file for one user so that only that user can modify the file.
5227
Total Unlock Requests is the number of HTTP requests using the UNLOCK method (since service startup). Unlock requests are used to remove locks from files.
5229
The rate HTTP requests using the UNLOCK method are made. Unlock requests are used to remove locks from files.
5231
Total Other Request Methods is the number of HTTP requests that are not OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, MOVE, COPY, MKCOL, PROPFIND, PROPPATCH, SEARCH, LOCK or UNLOCK methods (since service startup).
5233
The rate HTTP requests are made that do not use the OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, MOVE, COPY, MKCOL, PROPFIND, PROPPATCH, SEARCH, LOCK or UNLOCK methods.
5235
Total Method Requests is the number of all HTTP requests (since service startup).
5237
The rate HTTP requests are received.
5239
Total CGI requests is the total number of CGI requests (since service startup).
5241
The rate CGI requests are received by the Web service.
5243
Total ISAPI Extension Requests received (since service startup).
5245
The rate that ISAPI Extension requests are received by the Web service.
5247
Total Not Found Errors is the number of requests that couldn't be satisfied by the server because the requested document could not be found (since service startup). These are generally reported as an HTTP 404 error code to the client.
5249
The rate of errors due to requests that couldn't be satisfied by the server because the requested document could not be found. These are generally reported as an HTTP 404 error code to the client.
5251
Total Locked Errors is the number of requests that couldn't be satisfied by the server because the requested was locked (since service startup). These are generally reported as an HTTP 423 error code to the client.
5253
The rate of errors due to requests that couldn't be satisfied by the server because the requested document was locked. These are generally reported as an HTTP 423 error code to the client.
5255
Current CGI Requests is the current number of CGI requests being simultaneously processed by the Web service.
5257
Current ISAPI Extension Requests is the current number of ISAPI requests being simultaneously processed by the Web service.
5259
Maximum CGI Requests is the maximum number of CGI requests simultaneously processed by the Web service (since service startup).
5261
Maximum ISAPI Extension Requests is the maximum number of ISAPI requests simultaneously processed by the Web service (since service startup).
5263
This counter is no longer valid. Value will always be zero.
5265
This counter is no longer valid. Value will always be zero.
5267
This counter is no longer valid. Value will always be zero.
5269
This counter is no longer valid. Value will always be zero.
5271
This counter is no longer valid. Value will always be zero.
5273
Total requests temporarily blocked due to bandwidth throttling settings (since service startup).
5275
Total requests allowed by bandwidth throttling settings (since service startup).
5277
Total requests rejected due to bandwidth throttling settings (since service startup).
5279
Current requests temporarily blocked due to bandwidth throttling settings.
5281
This counter is no longer valid. Value will always be zero.
5283
Measured bandwidth of asynchronous I/O averaged over a minute.
5285
Total bytes blocked due to bandwidth throttling settings (since service startup).
5287
Current bytes temporarily blocked due to bandwidth throttling settings.
5289
The length of time the Web Service has been running.
5291
The Web Service Cache Counters object includes cache counters specific to the World Wide Web Publishing Service.
5293
Current number of files whose content is in the user-mode cache.
5295
Total number of files whose content was ever added to the user-mode cache (since service startup).
5297
Total number of successful lookups in the user-mode file cache (since service startup).
5299
Total number of unsuccessful lookups in the user-mode file cache (since service startup).
5301
The ratio of user-mode file cache hits to total cache requests (since service startup).
5305
The number of files removed from the user-mode cache (since service startup).
5307
Current number of bytes used for the user-mode file cache.
5309
Maximum number of bytes used for user-mode file cache (since service startup).
5311
Active Flushed Entries are file handles cached in user-mode that will be closed when all current transfers complete.
5313
Total Flushed Files is the number of file handles that have been removed from the user-mode cache (since service startup).
5315
URI information blocks currently in the user-mode cache.
5317
Total number of URI information blocks added to the user-mode cache (since service startup).
5319
Total number of successful lookups in the user-mode URI cache (since service startup).
5321
Total number of unsuccessful lookups in the user-mode URI cache (since service startup).
5323
The ratio of user-mode URI Cache Hits to total cache requests (since service startup).
5327
User-mode URI Cache flushes (since service startup).
5329
The number of URI information blocks that have been removed from the user-mode cache (since service startup).
5331
Current number of metadata information blocks currently in the user-mode cache.
5333
Total number of metadata information blocks added to the user-mode cache (since service startup).
5335
Total number of successful lookups in the user-mode metadata cache (since service startup).
5337
Total number of unsuccessful lookups in the user-mode metadata cache (since service startup).
5339
The ratio of user-mode metadata cache hits to total cache requests (since service startup).
5343
The number of user-mode metadata cache flushes (since service startup).
5345
Total Flushed Metadata is the number of Metadata information blocks that have been removed from the user-mode cache (since service startup).
5347
URI information blocks currently cached by the kernel.
5349
Total number of URI information blocks added to the kernel cache (since service startup).
5351
Total number of successful lookups in the kernel URI cache (since service startup).
5353
The rate of kernel URI Cache hits.
5355
Total number of unsuccessful lookups in the kernel URI cache (since service startup).
5357
The ratio of kernel URI cache hits to total cache requests (since service startup).
5361
Kernel URI Cache Flushes (since server startup).
5363
The number of URI information blocks that have been removed from the kernel cache (since service startup).
5365
Current memory usage by output cache.
5367
Number of items currently in output cache.
5369
Total number of hits in output cache.
5371
Total number of misses in output cache.
5373
Total number of flushes in output cache.
5375
Number of items that have been flushed, but are still being used by outgoing responses so are still taking up memory.
5377
Total number of items flushed by cache.
5379
Output Cache current hit ratio. Calculated as (H)/(H+M) where H and M represent Hits and Misses in previous sample interval respectively.
5467
ASP.NET global performance counters
5469
ASP.NET application performance counters
5471
Number of times the application has been restarted during the web server's lifetime.
5473
Number of currently running web applications.
5475
The number of requests disconnected due to communication errors or user terminated.
5477
The number of milliseconds that it took to execute the most recent request.
5479
The number of requests rejected because the request queue was full.
5481
The number of requests waiting to be processed.
5483
Number of worker processes running on the machine.
5485
Number of times a worker process has restarted on the machine.
5487
The number of milliseconds the most recent request was waiting in the queue.
5489
The current number of sessions currently active.
5491
The number of sessions that have been explicitly abandoned.
5493
The number of sessions timed out.
5495
The number of sessions total.
5497
The current number of requests, including those that are queued, currently executing, or waiting to be written to the client. Under the ASP.NET process model, when this counter exceeds the requestQueueLimit defined in the processModel configuration section, ASP.NET will begin rejecting requests.
5499
Number of audit successes in the application since it was started.
5501
Number of audit failures in the application since it was started.
5503
Number of error events raised since the application was started.
5505
Number of runtime error events raised since the application was started.
5507
Number of HTTP error events raised since the application was started.
5509
Number of requests utilizing anonymous authentication.
5511
Number of Authentication Anonymous Requests/Sec
5513
Total number of entries within the cache (both internal and user added)
5515
Number of additions and removals to the total cache per second.
5517
Total number of hits from the cache.
5519
Total number of cache misses.
5521
Ratio of hits from all cache calls.
5523
Cache Total Hit Ratio Base
5525
Total number of entries within the cache added by the user.
5527
Number of additions and removals to the API cache per second.
5529
Number of cache hits from user code.
5531
Number of cache misses called from user code.
5533
Ratio of hits called from user code.
5535
Cache API Hit Ratio Base
5537
Current number of entries in the output cache.
5539
Number of additions and removals to the output cache per second.
5541
Total number of output cacheable requests served from the output cache.
5543
Total number of output cacheable requests not served from the output cache.
5545
Ratio of hits to requests for output cacheable requests.
5547
Output Cache Hit Ratio Base
5549
Number of .asax, .ascx, .ashx, .asmx, or .aspx source files dynamically compiled.
5551
Number of debugging requests processed.
5553
Number of errors that have occurred during parsing and configuration.
5555
Number of errors that have occurred during compilation.
5557
Number of errors that have occurred during the processing of a request.
5559
Number of errors not handled by user code, but by the default error handler.
5561
Rate of unhandled errors.
5563
Total number of errors occurred.
5565
Rate of errors occurred.
5567
Number of active pipeline instances.
5569
The total size, in bytes, of all requests.
5571
The total size, in bytes, of responses sent to a client. This does not include standard HTTP response headers.
5573
The number of requests currently executing.
5575
Total number of failed requests.
5577
The number of requests for resources that were not found.
5579
Number of requests failed due to unauthorized access.
5581
The number of requests in the application request queue.
5583
The number of requests that timed out.
5585
The number of requests that executed successfully.
5587
The total number of requests since the application was started.
5589
The number of requests executed per second.
5591
The current number of sessions currently active.
5593
The number of sessions that have been explicitly abandoned.
5595
The number of sessions timed out.
5597
Total number of sessions since the application was started.
5599
The number of transactions aborted.
5601
The number of transactions committed.
5603
Number of transactions in progress.
5605
The total number of transactions since the application was started.
5607
Transactions started per second.
5609
The total number of connections to the State Server used by session state.
5611
The total number of connections to the SQL Server used by session state.
5613
Total number of instrumentation events raised since the application was started.
5615
Total number of instrumentation events per second.
5617
Number of application events raised since the application was started.
5619
Number of application events raised per second.
5621
Number of error events raised since the application was started.
5623
Number of error events per second.
5625
Number of runtime error events raised since the application was started.
5627
Number of runtime error events per second.
5629
Number of HTTP error events raised since the application was started.
5631
Number of HTTP error events raised per second.
5633
Number of request events raised since the application was started
5635
Number of request events raised per second.
5637
Number of audit successes in the application since it was started.
5639
Number of audit failures in the application since it was started.
5641
Number of successful membership credential validations since the application was started.
5643
Number of failed membership credential validations since the application was started.
5645
Number of successful forms authentication ticket validations since the application was started.
5647
Number of failed forms authentication ticket validations since the application was started.
5649
Number of viewstate MAC validations that failed since the application was started.
5651
The number of milliseconds that it took to execute the most recent request.
5653
The number of requests disconnected due to communication errors or user terminated.
5655
The number of requests rejected because the application request queue was full.
5657
The number of milliseconds the most recent request was waiting in the queue.
5659
The amount of physical memory used by the machine.
5661
The amount of physical memory used by the machine divided by the physical memory limit for the cache, as a percentage. When this reaches 100%, half of the cache entries will be forcibly removed. The __Total__ instance is the average of all instances, and therefore cannot be used to determine when cache entries will be forcibly removed.
5663
Cache % Machine Memory Limit Used Base
5665
The value of private bytes for the worker process in kilobytes.
5667
The value of private bytes for the worker process divided by the private bytes memory limit for the cache, as a percentage. When this reaches 100%, half of the cache entries will be forcibly removed. The __Total__ instance is the average of all instances, and therefore cannot be used to determine when cache entries will be forcibly removed.
5669
Cache % Process Memory Limit Used Base
5671
Total number of entries forcibly removed from the cache due to memory pressure.
5673
Total number of entries forcibly removed from the cache due to memory pressure that were originally inserted into the cache using one of the public cache APIs.
5675
Total number of entries forcibly removed from the cache due to memory pressure that were originally inserted into the cache by the output cache feature.
6515
Gives performance metrics for outlook server connectivity.
6517
Number of RPCs that outlook attempted to send to the server.
6519
Number of RPCs that outlook successfully sent to the server.
6521
Number of RPCs that were attempted, but failed.
6523
Number of RPCs that were sent to the server, but the user cancelled.
6525
Number of RPCs that were sent to the server, and took long enough to show progress UI.
6527
Number of RPCs that outlook attempted that blocked the UI.
6529
The average amount of time (ms) it took for all RPCs to complete successfully.
6531
The average amount of time (ms)it took for the last 10 RPCs to complete successfully.
6533
The average amount of time (ms) it took for the last 50 RPCs to complete successfully.
6535
The average amount of time (ms) it took for the last 200 RPCs to complete successfully.
6537
The minimum amount of time (ms) it took for an RPC to complete successfully.
6539
The maximum amount of time (ms) it took for an RPC to complete successfully.
6541
The number of connection objects that are currently being used.
6543
The number of active objects in the hcot/hsot table.
6545
The number of context handles (AD) that are currently open on the client.
6547
The number of binding handles (AD) that are currently open on the client.
6549
The number of context handles (store) that are currently open on the client.
6551
The number of binding handles (store) that are currently open on the client.
6959
VMware performance counters.
6961
The number of disk operations performed by the guest OS
6963
The number of disk read operations performed by the guest OS
6965
The number of disk write operations performed by the guest OS
6967
The number of bytes transferred for disk operations performed by the guest OS
6969
The number of bytes transferred for disk read operations performed by the guest OS
6971
The number of bytes transferred for disk write operations performed by the guest OS
6973
The number of bytes of simulated physical memory that is locked by the guest OS
6975
The number of bytes of simulated physical memory in the virtual machine
6977
The percentage of simulated physical memory recently used by the guest OS
6979
The number of network operations performed by the guest OS
6981
The number of bytes sent or received by the guest OS over the network
6983
The number of network errors from sending or receiving packets by the guest OS
6985
The number of network packets sent by the guest OS
6987
The number of bytes sent by the guest OS over the network
6989
The number of network errors from sending packets by the guest OS
6991
The number of network packets received by the guest OS
6993
The number of bytes received by the guest OS over the network
6995
The number of network errors from receiving packets by the guest OS
7333
SMSvcHost 4.0.0.0 performance counters
7335
The total number of failures at the protocol layer of net.tcp.
7337
The total number of failures at the protocol layer of net.pipe.
7339
The total number of failures dispatching messages received over net.tcp.
7341
The total number of failures dispatching messages received over net.pipe.
7343
The total number of connections dispatched over net.tcp.
7345
The total number of connections dispatched over net.pipe.
7347
The total number of TCP connections accepted over net.tcp.
7349
The total number of named pipe connections accepted over net.pipe.
7351
The number of uri registrations currently active for net.tcp.
7353
The number of uri registrations currently active for net.pipe.
7355
The total number of uris that were succesfully registered for net.tcp.
7357
The total number of uris that were succesfully registered for net.pipe.
7359
The total number of uris that were succesfully unregistered for net.tcp.
7361
The total number of uris that were succesfully unregistered for net.pipe.
7363
MSDTC Bridge 4.0.0.0 performance counters
7365
The number of WS-AT protocol messages that the WS-AT service failed to send per second.
7367
The number of Prepare retry messages that the WS-AT service has sent per second.
7369
The number of Commit retry messages that the WS-AT service has sent per second.
7371
The number of Prepared retry messages that the WS-AT service has sent per second.
7373
The number of Replay retry messages that the WS-AT service has sent per second.
7375
The number of Fault messages that the WS-AT service has received per second.
7377
The number of Fault messages that the WS-AT service has sent per second.
7379
Average time in milliseconds for the WS-AT service to receive a Prepare message response from a participant.
7381
Base counter for the 'Average participant prepare response time' counter.
7383
Average time in milliseconds for the WS-AT service to receive a Commit message response from a participant.
7385
Base counter for the 'Average participant commit response time' counter.
7387
Counters for classes in the System.Net namespace.
7389
The cumulative total number of socket connections established for this process since the process was started.
7391
The cumulative total number of bytes received over all open socket connections since the process was started. This number includes data and any protocol information that is not defined by the TCP/IP protocol.
7393
The cumulative total number of bytes sent over all open socket connections since the process was started. This number includes data and any protocol information that is not defined by the TCP/IP protocol.
7395
The cumulative total number of datagram packets received since the process was started.
7397
The cumulative total number of datagram packets sent since the process was started.
7399
The number of HttpWebRequest objects created during the last sample interval (typically 1 sec).
7401
The average lifetime of all web requests completed during the last sample interval. The lifetime is defined as the time between the creation of the HttpWebRequest object and the closing of either the HttpWebResponse object or the response stream object. Values are shown in milliseconds.
7403
HttpWebRequests Average Lifetime Base
7405
The number of HttpWebRequest objects added to a waiting queue during the last sample interval (typically 1 sec). A request is added to a waiting queue if all connections to the server are already in use when the request is submitted.
7407
The average time HttpWebRequest objects spent in a waiting queue. A request is added to a waiting queue if all connections to the server are already in use when the request is submitted, and remains there until a connection becomes available. Values are shown in milliseconds.
7409
HttpWebRequests Average Queue Time Base
7411
The number of HttpWebRequest objects aborted during the last sample interval (typically 1 sec). Typically requests are aborted either by calling HttpWebRequest.Abort() or if the request times out.
7413
The number of HttpWebRequest objects failed during the last sample interval (typically 1 sec). A request is considered failed, if after starting the request processing one of the following methods throw an exception: HttpWebRequest.EndGetRequestStream(), HttpWebRequest.GetRequestStream(), HttpWebRequest.EndGetResponse(), HttpWebRequest.GetResponse()
7415
System.Runtime.Caching.MemoryCache Performance Counters
7417
The number of cache hits.
7419
The number of cache misses.
7421
The percentage of cache hits in the total number of cache requests.
7423
Cache Hit Ratio Base
7425
Total number of entries removed from the cache due to memory pressure or Trim invocations.
7427
The number of entries within the cache.
7429
The number of entries added to the cache or removed from the cache per second.
7431
Windows Workflow Foundation Performance Counters
7433
Total number of workflows created.
7435
Rate of workflows created per second.
7437
Total number of workflows unloaded.
7439
Rate of workflows unloaded per second.
7441
Total number of workflows loaded.
7443
Rate of workflows loaded per second.
7445
Total number of workflows completed.
7447
Rate of workflows completed per second.
7449
Total number of workflows suspended.
7451
Rate of workflows suspended per second.
7453
Total number of workflows terminated.
7455
Rate of workflows terminated per second.
7457
Total number of workflows in memory.
7459
Total number of workflows aborted.
7461
Rate of workflows aborted per second.
7463
Total number of workflows persisted.
7465
Rate of workflows persisted per second.
7467
Total number of workflow instances actively executing.
7469
Rate of workflows becoming idle per second.
7471
Total number of workflows ready to execute.
7473
Total number of workflows waiting for a thread.
8091
The hard disk space on the local system reserved for virtual applications.
8093
The size in MB of the space reserved for virtual applications.
8095
The size in MB of unused cache.
8097
The percentage of unused cache.
8099
Number of WMI High Performance provider returned by WMI Adapter
8101
Shows High Performance Classes
8103
Shows if High Performance Classes are valid
8105
MSiSCSI_ConnectionStatistics
8107
BytesReceived
8109
BytesSent
8111
PDUCommandsSent
8113
PDUResponsesReceived
8115
MSiSCSI_InitiatorInstanceStatistics
8117
SessionConnectionTimeoutErrorCount
8119
SessionDigestErrorCount
8121
SessionFailureCount
8123
SessionFormatErrorCount
8125
MSiSCSI_InitiatorLoginStatistics
8127
LoginAcceptRsps
8129
LoginAuthenticateFails
8131
LoginAuthFailRsps
8133
LoginFailures
8135
LoginNegotiateFails
8137
LoginOtherFailRsps
8139
LoginRedirectRsps
8141
LogoutNormals
8143
LogoutOtherCodes
8145
MSiSCSI_MMIPSECStats
8147
AcquireFailures
8149
AcquireHeapSize
8151
ActiveAcquire
8153
ActiveReceive
8155
AuthenticationFailures
8157
ConnectionListSize
8159
GetSPIFailures
8161
InvalidCookiesReceived
8163
InvalidPackets
8165
KeyAdditionFailures
8167
KeyAdditions
8169
KeyUpdateFailures
8171
KeyUpdates
8173
NegotiationFailures
8175
OakleyMainMode
8177
OakleyQuickMode
8179
ReceiveFailures
8181
ReceiveHeapSize
8183
SendFailures
8185
SoftAssociations
8187
TotalGetSPI
8189
MSiSCSI_NICPerformance
8191
BytesReceived
8193
BytesTransmitted
8195
PDUReceived
8197
PDUTransmitted
8199
MSiSCSI_QMIPSECStats
8201
ActiveSA
8203
ActiveTunnels
8205
AuthenticatedBytesReceived
8207
AuthenticatedBytesSent
8209
BadSPIPackets
8211
ConfidentialBytesReceived
8213
ConfidentialBytesSent
8215
KeyAdditions
8217
KeyDeletions
8219
PacketsNotAuthenticated
8221
PacketsNotDecrypted
8223
PacketsWithReplayDetection
8225
PendingKeyOperations
8227
ReKeys
8229
TransportBytesReceived
8231
TransportBytesSent
8233
TunnelBytesReceived
8235
TunnelBytesSent
8237
MSiSCSI_RequestTimeStatistics
8239
AverageProcessingTime
8241
MaximumProcessingTime
8243
MSiSCSI_SessionStatistics
8245
BytesReceived
8247
BytesSent
8249
ConnectionTimeoutErrors
8251
DigestErrors
8253
FormatErrors
8255
PDUCommandsSent
8257
PDUResponsesReceived
8259
ProcessorPerformance
8261
frequency
8263
percentage
8265
power
8267
Video_Scheduler_Statistics
8269
WmiCompletedDMABufferCount
8271
WmiGPUBusy
8273
WmiGPUContext
8275
WmiGPUContextSwitch
8277
WmiPreemptedDMABufferCount
8279
WmiPresentCount
8281
WmiSubmitDMABufferCount
8283
ASP.NET State Service
8495
The current number of sessions currently active.
8497
The number of sessions that have been explicitly abandoned.
8499
The number of sessions timed out.
8501
The number of sessions total.
8503
ASP.NET global performance counters
8505
ASP.NET application performance counters
8507
Number of times the application has been restarted during the web server's lifetime.
8509
Number of currently running web applications.
8511
The number of requests disconnected due to communication errors or user terminated.
8513
The number of milliseconds that it took to execute the most recent request.
8515
The number of requests rejected because the request queue was full.
8517
The number of requests waiting to be processed.
8519
Number of worker processes running on the machine.
8521
Number of times a worker process has restarted on the machine.
8523
The number of milliseconds the most recent request was waiting in the queue.
8525
The current number of sessions currently active.
8527
The number of sessions that have been explicitly abandoned.
8529
The number of sessions timed out.
8531
The number of sessions total.
8533
The current number of requests, including those that are queued, currently executing, or waiting to be written to the client. Under the ASP.NET process model, when this counter exceeds the requestQueueLimit defined in the processModel configuration section, ASP.NET will begin rejecting requests.
8535
Number of audit successes in the application since it was started.
8537
Number of audit failures in the application since it was started.
8539
Number of error events raised since the application was started.
8541
Number of runtime error events raised since the application was started.
8543
Number of HTTP error events raised since the application was started.
8545
Number of requests utilizing anonymous authentication.
8547
Number of Authentication Anonymous Requests/Sec
8549
Total number of entries within the cache (both internal and user added)
8551
Number of additions and removals to the total cache per second.
8553
Total number of hits from the cache.
8555
Total number of cache misses.
8557
Ratio of hits from all cache calls.
8559
Cache Total Hit Ratio Base
8561
Total number of entries within the cache added by the user.
8563
Number of additions and removals to the API cache per second.
8565
Number of cache hits from user code.
8567
Number of cache misses called from user code.
8569
Ratio of hits called from user code.
8571
Cache API Hit Ratio Base
8573
Current number of entries in the output cache.
8575
Number of additions and removals to the output cache per second.
8577
Total number of output cacheable requests served from the output cache.
8579
Total number of output cacheable requests not served from the output cache.
8581
Ratio of hits to requests for output cacheable requests.
8583
Output Cache Hit Ratio Base
8585
Number of .asax, .ascx, .ashx, .asmx, or .aspx source files dynamically compiled.
8587
Number of debugging requests processed.
8589
Number of errors that have occurred during parsing and configuration.
8591
Number of errors that have occurred during compilation.
8593
Number of errors that have occurred during the processing of a request.
8595
Number of errors not handled by user code, but by the default error handler.
8597
Rate of unhandled errors.
8599
Total number of errors occurred.
8601
Rate of errors occurred.
8603
Number of active pipeline instances.
8605
The total size, in bytes, of all requests.
8607
The total size, in bytes, of responses sent to a client. This does not include standard HTTP response headers.
8609
The number of requests currently executing.
8611
Total number of failed requests.
8613
The number of requests for resources that were not found.
8615
Number of requests failed due to unauthorized access.
8617
The number of requests in the application request queue.
8619
The number of requests that timed out.
8621
The number of requests that executed successfully.
8623
The total number of requests since the application was started.
8625
The number of requests executed per second.
8627
The current number of sessions currently active.
8629
The number of sessions that have been explicitly abandoned.
8631
The number of sessions timed out.
8633
Total number of sessions since the application was started.
8635
The number of transactions aborted.
8637
The number of transactions committed.
8639
Number of transactions in progress.
8641
The total number of transactions since the application was started.
8643
Transactions started per second.
8645
The total number of connections to the State Server used by session state.
8647
The total number of connections to the SQL Server used by session state.
8649
Total number of instrumentation events raised since the application was started.
8651
Total number of instrumentation events per second.
8653
Number of application events raised since the application was started.
8655
Number of application events raised per second.
8657
Number of error events raised since the application was started.
8659
Number of error events per second.
8661
Number of runtime error events raised since the application was started.
8663
Number of runtime error events per second.
8665
Number of HTTP error events raised since the application was started.
8667
Number of HTTP error events raised per second.
8669
Number of request events raised since the application was started
8671
Number of request events raised per second.
8673
Number of audit successes in the application since it was started.
8675
Number of audit failures in the application since it was started.
8677
Number of successful membership credential validations since the application was started.
8679
Number of failed membership credential validations since the application was started.
8681
Number of successful forms authentication ticket validations since the application was started.
8683
Number of failed forms authentication ticket validations since the application was started.
8685
Number of viewstate MAC validations that failed since the application was started.
8687
The number of milliseconds that it took to execute the most recent request.
8689
The number of requests disconnected due to communication errors or user terminated.
8691
The number of requests rejected because the application request queue was full.
8693
The number of milliseconds the most recent request was waiting in the queue.
8695
The amount of physical memory used by the machine divided by the physical memory limit for the cache, as a percentage. When this reaches 100%, half of the cache entries will be forcibly removed. The __Total__ instance is the average of all instances, and therefore cannot be used to determine when cache entries will be forcibly removed.
8697
Cache % Machine Memory Limit Used Base
8699
The value of private bytes for the worker process divided by the private bytes memory limit for the cache, as a percentage. When this reaches 100%, half of the cache entries will be forcibly removed. The __Total__ instance is the average of all instances, and therefore cannot be used to determine when cache entries will be forcibly removed.
8701
Cache % Process Memory Limit Used Base
8703
Total number of entries forcibly removed from the cache due to memory pressure.
8705
Total number of entries forcibly removed from the cache due to memory pressure that were originally inserted into the cache using one of the public cache APIs.
8707
Total number of entries forcibly removed from the cache due to memory pressure that were originally inserted into the cache by the output cache feature.
8709
Estimated percentage of elapsed time that the processor spends executing managed application code. This counter only tracks processor time of managed threads in the application. It does not include additional processor time spent executing on non-managed threads. Note that this counter is only updated with new data every five seconds.
8711
% Managed Processor Time Base (estimated)
8713
Estimated managed heap memory consumption (in KB) by the application. The accuracy of this counter varies depending on the duration of elapsed time since the last full managed memory heap collection. Note that this counter is only updated with new data every five seconds.
8715
Number of WMI High Performance provider returned by WMI Adapter
8717
Shows High Performance Classes
8719
Shows if High Performance Classes are valid
8721
MSiSCSI_ConnectionStatistics
8723
BytesReceived
8725
BytesSent
8727
PDUCommandsSent
8729
PDUResponsesReceived
8731
MSiSCSI_InitiatorInstanceStatistics
8733
SessionConnectionTimeoutErrorCount
8735
SessionDigestErrorCount
8737
SessionFailureCount
8739
SessionFormatErrorCount
8741
MSiSCSI_InitiatorLoginStatistics
8743
LoginAcceptRsps
8745
LoginAuthenticateFails
8747
LoginAuthFailRsps
8749
LoginFailures
8751
LoginNegotiateFails
8753
LoginOtherFailRsps
8755
LoginRedirectRsps
8757
LogoutNormals
8759
LogoutOtherCodes
8761
MSiSCSI_MMIPSECStats
8763
AcquireFailures
8765
AcquireHeapSize
8767
ActiveAcquire
8769
ActiveReceive
8771
AuthenticationFailures
8773
ConnectionListSize
8775
GetSPIFailures
8777
InvalidCookiesReceived
8779
InvalidPackets
8781
KeyAdditionFailures
8783
KeyAdditions
8785
KeyUpdateFailures
8787
KeyUpdates
8789
NegotiationFailures
8791
OakleyMainMode
8793
OakleyQuickMode
8795
ReceiveFailures
8797
ReceiveHeapSize
8799
SendFailures
8801
SoftAssociations
8803
TotalGetSPI
8805
MSiSCSI_NICPerformance
8807
BytesReceived
8809
BytesTransmitted
8811
PDUReceived
8813
PDUTransmitted
8815
MSiSCSI_QMIPSECStats
8817
ActiveSA
8819
ActiveTunnels
8821
AuthenticatedBytesReceived
8823
AuthenticatedBytesSent
8825
BadSPIPackets
8827
ConfidentialBytesReceived
8829
ConfidentialBytesSent
8831
KeyAdditions
8833
KeyDeletions
8835
PacketsNotAuthenticated
8837
PacketsNotDecrypted
8839
PacketsWithReplayDetection
8841
PendingKeyOperations
8843
ReKeys
8845
TransportBytesReceived
8847
TransportBytesSent
8849
TunnelBytesReceived
8851
TunnelBytesSent
8853
MSiSCSI_RequestTimeStatistics
8855
AverageProcessingTime
8857
MaximumProcessingTime
8859
MSiSCSI_SessionStatistics
8861
BytesReceived
8863
BytesSent
8865
ConnectionTimeoutErrors
8867
DigestErrors
8869
FormatErrors
8871
PDUCommandsSent
8873
PDUResponsesReceived
8875
ProcessorPerformance
8877
frequency
8879
percentage
8881
power
8883
Video_Scheduler_Statistics
8885
WmiCompletedDMABufferCount
8887
WmiGPUBusy
8889
WmiGPUContext
8891
WmiGPUContextSwitch
8893
WmiPreemptedDMABufferCount
8895
WmiPresentCount
8897
WmiSubmitDMABufferCount
5381
這一組計數器會對工作者處理序公開與 HTTP 要求處理相關的計數器。
5383
工作者處理序所服務的 HTTP 要求總數。
5385
工作者處理序每秒處理的 HTTP 要求數。
5387
目前工作者處理序處理的要求數。
5389
在工作者處理序中可用來處理要求的執行緒總數。
5391
在工作者處理序中正在處理要求的執行緒數。
5393
執行緒集區可視需要增加的最大執行緒數。
5395
目前使用者模式檔案快取使用的位元組數。
5397
使用者模式檔案快取使用的最大位元組數。
5399
目前輸出快取使用的位元組數。
5401
目前內容是在使用者模式快取中的檔案數。
5403
內容已加到使用者模式快取中的檔案總數 (自服務啟動後開始計數)。
5405
在使用者模式檔案快取中的成功查閱總數 (自服務啟動後開始計數)。
5407
在使用者模式檔案快取中的失敗查閱總數 (自服務啟動後開始計數)。
5409
從使用者模式快取中移除的檔案總數 (自服務啟動後開始計數)。
5411
使用者模式中所快取的檔案控制碼數目,當所有目前的傳輸都完成時,它將被關閉。
5413
已從使用者模式快取中移除的檔案控制碼總數 (自服務啟動後開始計數)。
5415
目前在使用者模式快取中的 URI 資訊區塊數。
5417
已加到使用者模式快取中的 URI 資訊區塊總數 (自服務啟動後開始計數)。
5419
在使用者模式 URI 快取中的成功查閱總數 (自服務啟動後開始計數)。
5421
在使用者模式 URI 快取中的失敗查閱總數 (自服務啟動後開始計數)。
5423
URI 快取的總排清次數 (自服務啟動後開始計數)。
5425
已從使用者模式快取中移除的 URI 資訊區塊數 (自服務啟動後開始計數)。
5427
目前在使用者模式快取中的中繼資料資訊區塊數。
5429
已加到使用者模式快取中的中繼資料資訊區塊總數 (自服務啟動後開始計數)。
5431
在使用者模式中繼資料快取中的成功查閱總數 (自服務啟動後開始計數)。
5433
在使用者模式中繼資料快取中的失敗查閱總數 (自服務啟動後開始計數)。
5435
使用者模式中繼資料快取的總排清次數 (自服務啟動後開始計數)。
5437
已從使用者模式快取中移除的中繼資料資訊區塊總數 (自服務啟動後開始計數)。
5439
目前在輸出快取中的項目數。
5441
在輸出快取中的成功查閱總數 (自服務啟動後開始計數)。
5443
在輸出快取中的失敗查閱總數 (自服務啟動後開始計數)。
5445
輸出快取的總排清次數 (自服務啟動後開始計數)。
5447
已從輸出快取中排清但仍由傳出回應使用 (亦即仍佔用記憶體) 的項目數。
5449
已從輸出快取中排清的項目總數 (自服務啟動後開始計數)。
5451
在上一個樣本區間內,在檔案快取中的成功查閱率。
5453
在上一個樣本區間內,在中繼資料快取中的成功查閱率。
5455
在上一個樣本區間內,在輸出快取中的成功查閱率。
5457
在上一個樣本區間內,在 URI 快取中的成功查閱率。
5459
在上一個樣本區間內,在檔案快取中的失敗查閱率。
5461
在上一個樣本區間內,在中繼資料快取中的失敗查閱率。
5463
在上一個樣本區間內,在輸出快取中的失敗查閱率。
5465
在上一個樣本區間內,在 URI 快取中的失敗查閱率。
4699
終端機服務摘要資訊
4701
使用中的終端機服務工作階段數目
4703
非使用中的終端機服務工作階段數目
4705
終端機服務工作階段的總數
1927
WFPv4 是一組 Windows 篩選平台的計數器,套用於網際網路通訊協定第 4 版的流量與連線。
1929
每秒 Inbound Packets Discarded 是 Windows 篩選平台丟棄輸入封包的速率。
1931
每秒 Outbound Packets Discarded 是 Windows 篩選平台丟棄輸出封包的速率。
1933
每秒 Packets Discarded 是 Windows 篩選平台丟棄的全部輸入與輸出封包速率。
1935
Blocked Binds 是指從電腦上次啟動後,Windows 篩選平台封鎖的網路資源指派要求數目。
1937
每秒封鎖輸入連線的速率是 Windows 篩選平台封鎖輸入連線的速率。
1939
每秒 Outbound Connections Blocked 是 Windows 篩選平台封鎖輸出連線數目的速率。
1941
每秒 Inbound Connections Allowed 是 Windows 篩選平台允許輸入連線數目的速率。
1943
每秒 Outbound Connections Allowed 是 Windows 篩選平台允許輸出連線數目的速率。
1945
Inbound Connections 是從電腦上次啟動後,Windows 篩選平台允許輸入連線的數目。
1947
outbound Connections 是從電腦上次啟動後,Windows 篩選平台允許輸出連線的數目。
1949
Active Inbound Connections 是目前 Windows 篩選平台允許輸入連線的數目。
1951
使用中輸出連線是 Windwos 篩選平台允許的目前輸出連線數目。
1953
每秒 Allowed Classifies 是 Windows 篩選平台允許網路活動的安全性規則評估的數率。
1987
IPsec Driver 是一組網際網路通訊協定安全性 (IPsec) 驅動程式的計數器,套用於網際網路通訊協定第 4 版與網際網路通訊協定第 6 版的流量。
1989
Active Security Associations 是使用中快速模式安全性關聯的數目。
1991
Pending Security Associations 是擱置中的 Quick Mode 安全性關聯數目。
1993
Incorrect SPI packets 是電腦上次啟動後,安全性參數索引 (SPI) 不正確的封包數目。短時間內具有錯誤 SPI 的封包數目越多,代表可能遭到封包詐騙攻擊。
1995
每秒 Bytes Received in Tunnel Mode 是使用通道模式接收位元組的速率。
1997
每秒 Bytes Sent in Tunnel Mode 是使用通道模式傳送位元組的速率。
1999
每秒 Bytes Received in Transport Mode 是使用傳輸模式接收位元組的速率。
2001
每秒 Bytes Sent in Transport Mode 是使用傳輸模式傳送位元組的速率。
2003
Offloaded Security Associations 是使用中快速模式安全性關聯卸載到硬體的數目。某些網路介面卡可以執行 IPsec 密碼編譯功能的硬體卸載以加速 IPsec 處理。
2005
每秒 Offloaded Bytes Received 是使用 IPsec 硬體卸載接收位元組的速率。某些網路介面卡可以執行 IPsec 密碼編譯功能的硬體卸載以加速 IPsec 處理。
2007
每秒 Offloaded Sent Received 是使用 IPsec 硬體卸載傳送位元組的速率。某些網路介面卡可以執行 IPsec 密碼編譯功能的硬體卸載以加速 IPsec 處理。
2009
Packets That Failed Replay Detection 是從電腦上次啟動後,包含不正確順序的封包數目。這個計數器的增加可能表示網路問題或是再次攻擊。
2011
Packets Not authenticated 是從電腦上次啟動後,資料無法確認 (完整性雜湊確認失敗) 的封包數目。這個計數器的增加可能表示 IPsec 封包詐騙或修改攻擊,或是網路裝置造成的封包損毀。
2013
Packets Not Decrypted 是從電腦上次啟動後,無法解密的封包數目。如果封包無法通過驗證檢查即無法解密。
2015
SA Rekeys 是從電腦上次啟動後,快速模式安全性關聯重設金鑰成功操作的次數。
2017
Security Associations Added 是從電腦上次啟動後,新增的安全性關聯數目。
2019
Packets That Failed ESP Validation 是從電腦上次啟動後,無法通過 ESP 驗證的接收封包數目。
2021
Packets That Failed UDP-ESP Validation 是從電腦上次啟動後,無法通過 UDP-ESP 檢查 (用於 NAT 周遊) 的封包數目。
2023
Packets Received Over Wrong SA 是從電腦上次啟動後,在錯誤安全性關聯上接收的封包數目。
2025
Plaintext Packets Received 是從電腦上次啟動後,接收的純文字封包數目。
1983
WFP 是一組任何非套用於特定網際網路通訊協定版本的 Windows 篩選平台的計數器。
1985
Provider Count 是在 Windows 篩選平台中登錄的提供者數目。
1955
WFPv6 是一組 Windows 篩選平台的計數器,套用於網際網路通訊協定第 6 版的流量與連線。
1957
每秒 Inbound Packets Discarded 是 Windows 篩選平台丟棄輸入封包的速率。
1959
每秒 Outbound Packets Discarded 是 Windows 篩選平台丟棄輸出封包的速率。
1961
每秒 Packets Discarded 是 Windows 篩選平台丟棄的全部輸入與輸出封包速率。
1963
Blocked Binds 是指從電腦上次啟動後,Windows 篩選平台封鎖的網路資源指派要求數目。
1965
每秒封鎖輸入連線的速率是 Windows 篩選平台封鎖輸入連線的速率。
1967
每秒 Outbound Connections Blocked 是 Windows 篩選平台封鎖輸出連線數目的速率。
1969
每秒 Inbound Connections Allowed 是 Windows 篩選平台允許輸入連線數目的速率。
1971
每秒 Outbound Connections Allowed 是 Windows 篩選平台允許輸出連線數目的速率。
1973
Inbound Connections 是從電腦上次啟動後,Windows 篩選平台允許輸入連線的數目。
1975
outbound Connections 是從電腦上次啟動後,Windows 篩選平台允許輸出連線的數目。
1977
Active Inbound Connections 是目前 Windows 篩選平台允許輸入連線的數目。
1979
使用中輸出連線是 Windwos 篩選平台允許的目前輸出連線數目。
1981
每秒 Allowed Classifies 是 Windows 篩選平台允許網路活動的安全性規則評估的數率。
4707
The set of Counters for Authorization Manager application object
4709
Shows the total number of scopes in the application
4711
Shows the number of scopes that are currently loaded in memory
4847
DFS 複寫資料夾效能物件。此物件包含執行與衝突配額的計數器。
4849
Conflict Files Generated 表示在此複寫資料夾中,已由 DFS 複寫服務移至「因衝突而刪除」資料夾的檔案與資料夾數。DFS 複寫服務會自動偵測及解析在複寫資料夾中發現的衝突,並將遺失版本移至「因衝突而刪除」資料夾中。此服務會在「因衝突而刪除」資料夾超過預先設定的配額閾值時,自動清理此資料夾。
4851
Conflict Bytes Generated 表示在此複寫資料夾中,已由 DFS 複寫服務移至「因衝突而刪除」資料夾的檔案與資料夾大小總計 (位元組)。DFS 複寫服務會自動偵測及解析在複寫資料夾中發現的衝突,並將失敗版本移至「因衝突而刪除」資料夾中。此服務會在「因衝突而刪除」資料夾超過預先設定的配額閾值時,自動清理此資料夾。
4853
Conflict Files Cleaned up 表示 DFS 複寫服務從「因衝突而刪除」資料夾中刪除的衝突失敗檔案與資料夾數。DFS 複寫服務會自動偵測及解析在複寫資料夾中發現的衝突,並將失敗版本移至「因衝突而刪除」資料夾中。此服務會在「因衝突而刪除」資料夾超過預先設定的配額閾值時,自動清理此資料夾。
4855
Conflict Bytes Cleaned up 表示 DFS 複寫服務從「因衝突而刪除」資料夾中刪除的衝突失敗檔案與資料夾大小總計 (位元組)。DFS 複寫服務會自動偵測及解析在複寫資料夾中發現的衝突,並將失敗版本移至「因衝突而刪除」資料夾中。此服務會在「因衝突而刪除」資料夾超過預先設定的配額閾值時,自動清理此資料夾。
4857
Conflict Space in Use 表示 DFS 複寫服務目前在「因衝突而刪除」資料夾中所使用的衝突失敗檔案與資料夾的大小總計 (位元組)。DFS 複寫服務會自動偵測及解析在複寫資料夾中發現的衝突,並將失敗版本移至「因衝突而刪除」資料夾中。此服務會在「因衝突而刪除」資料夾超過預先設定的配額閾值時,自動清理此資料夾。
4859
Conflict Folder Cleanups Completed 表示 DFS 複寫服務從「因衝突而刪除」資料夾中刪除衝突失敗檔案與資料夾的次數。DFS 複寫服務會自動偵測及解析在複寫資料夾中發現的衝突,並將失敗版本移至「因衝突而刪除」資料夾中。此服務會在「因衝突而刪除」資料夾超過預先設定的配額閾值時,自動清理此資料夾。
4861
File Installs Succeeded 表示順利從傳送成員接收並安裝在此伺服器本機上的檔案數。DFS 複寫服務會將執行檔案複寫至執行資料夾中,並在安裝資料夾中加以解壓縮,然後將其重新命名為目標位置。此程序的第二與第三個步驟,即為一般所指的檔案安裝。
4863
File Installs Retried 表示因為在安裝檔案時發生的共用違規與其他錯誤而重試的檔案安裝數。DFS 複寫服務會將執行檔案複寫至執行資料夾中,並在安裝資料夾中加以解壓縮,然後將其重新命名為目標位置。此程序的第二與第三個步驟,即為一般所指的檔案安裝。
4865
Updates Dropped 表示因未變更複寫檔案或資料夾而被 DFS 複寫服務忽略的重複檔案複寫更新記錄數。例如,若以檔案或資料夾中完全相同的存取控制清單 (ACL) 來覆寫原有的 ACL,就會產生丟棄的更新。
4867
Deleted Files Generated 表示複寫的刪除檔案與資料夾從傳送成員的複寫資料夾中遭到刪除後,移至「因衝突而刪除」資料夾中的數目。DFS 複寫服務會在「因衝突而刪除」資料夾超過預先設定的配額閾值時,自動清理此資料夾。
4869
Deleted Bytes Generated 表示複寫的刪除檔案與資料夾從傳送成員的複寫資料夾中遭到刪除後,移至「因衝突而刪除」資料夾中的大小總計 (位元組)。DFS 複寫服務會在「因衝突而刪除」資料夾超過預先設定的配額閾值時,自動清理此資料夾。
4871
Deleted Files Cleaned up 表示 DFS 複寫服務從「因衝突而刪除」資料夾中清除之複寫的刪除檔案與資料夾數。此服務會在「因衝突而刪除」資料夾超過預先設定的配額閾值時,自動清理此資料夾。
4873
Deleted Bytes Cleaned up 表示 DFS 複寫服務從「因衝突而刪除」資料夾中已清除之複寫的刪除檔案與資料夾大小總計 (位元組)。此服務會在「因衝突而刪除」資料夾超過預先設定的配額閾值時,自動清理此資料夾。
4875
Deleted Space in Use 表示 DFS 附寫服務於目前「因衝突而刪除」資料夾中所使用的已刪除檔案與資料夾大小總計 (位元組)。DFS 複寫服務會從其傳送的協力電腦偵測並將檔案或資料夾移動到「因衝突而刪除」資料夾。此服務會在「因衝突而刪除」資料夾超過預先設定的配額閾值時,自動清理此資料夾。
4877
Total Files Received 表示此複寫資料夾已接收的檔案數。
4879
Size of Files Received 表示針對此複寫資料夾所接收之檔案的解壓縮大小 (位元組)。若未使用 DFS 複寫壓縮,此值即為接收的位元組數。
4881
Compressed Size of Files Received 表示針對此複寫資料夾所接收之檔案的壓縮大小 (位元組)。
4883
RDC Number of Files Received 表示針對此複寫資料夾所接收的檔案數。
4885
RDC Size of Files Received 表示針對此複寫資料夾使用遠端差異壓縮 (RDC) 所接收之檔案的解壓縮大小 (位元組)。若未使用壓縮及 RDC,此值即為接收的位元組數。這並不是透過網路所接收的實際位元組數。
4887
RDC Compressed Size of Files Received 表示針對此複寫資料夾使用遠端差異壓縮 (RDC) 所接收之檔案的壓縮大小 (位元組)。若未使用 RDC,此值即為接收的位元組數。這並不是透過網路所接收的實際位元組數。
4889
RDC Bytes Received 表示針對此複寫資料夾使用遠端差異壓縮 (RDC) 從複寫來源檔案中接收的位元組數。這是在網路沒有額外的網路通訊協定負荷下所接收的實際位元組數。
4891
Bandwidth Savings Using DFS Replication 表示 DFS 複寫服務藉由使用能夠儘可能降低網路頻寬的遠端差異壓縮 (RDC) 與其他壓縮的技術整合,對此複寫資料夾所節省的頻寬百分比。例如,20 這個值,表示 DFS 複寫服務實際在網路間使用的頻寬,比它在傳輸整個未壓縮的檔案時節省了 20% 的頻寬。
4893
傳入連線的 DFS 複寫連線效能物件。
4895
Total Bytes Received 表示連線上所接收的總位元組數。接收的位元組數值包括檔案資料與複寫中繼資料。
4897
Total Files Received 表示連線上已接收的檔案數。
4899
Size of Files Received 表示此連線上所接收之檔案的未壓縮大小 (位元組)。若未使用 DFS 複寫壓縮,此值即為接收的位元組數。
4901
Compressed Size of Files Received 表示連線上所接收之檔案的壓縮大小 (位元組)。
4903
Bytes Received Per Second 表示過去 30 秒內,每秒所接收的位元組數平均估計值。
4905
RDC Number of Files Received 表示此連線上已接收的檔案數。
4907
RDC Size of Files Received 表示此連線上使用遠端差異壓縮 (RDC) 所接收之檔案的未壓縮大小 (位元組)。若未使用壓縮及 RDC,此值即為接收的位元組數。這並不是透過網路所接收的實際位元組數。
4909
RDC Compressed Size of Files Received 表示此連線上使用遠端差異壓縮 (RDC) 所接收之檔案的壓縮大小 (位元組)。若未使用 RDC,此值即為接收的位元組數。這並不是透過網路所接收的實際位元組數。
4911
RDC Bytes Received 表示使用遠端差異壓縮 (RDC) 複寫檔案時,在此連線上所接收的位元組數。這是在網路沒有額外的網路通訊協定負荷下所接收的實際位元組數。
4913
Bandwidth Savings Using DFS Replication 表示 DFS 複寫服務藉由使用能夠儘可能降低網路頻寬的遠端差異壓縮 (RDC) 與其他壓縮的技術整合,對此連線所節省的頻寬百分比。例如,20 這個值,即表示 DFS 複寫服務實際在網路間使用的頻寬,比它在傳輸整個未壓縮的檔案時節省了 20% 的頻寬。
4835
DFS 複寫服務磁碟區效能物件。此物件包含每個磁碟區上的更新序號 (USN) 日誌記錄與資料庫處理的計數器。
4837
USN Journal Records Read 表示 DFS 複寫服務已讀取的更新序號 (USN) 日誌記錄數。
4839
USN Journal Records Accepted 表示 DFS 複寫服務已處理的更新序號 (USN) 日誌記錄數。DFS 複寫服務會處理磁碟區上已複寫內容的所有 USN 日誌記錄,並忽略磁碟區上非複寫檔案與資料夾的記錄。
4841
USN Journal Unread Percentage 表示 DFS 複寫服務尚未讀取及處理的更新序號 (USN) 日誌百分比。若此計數器到達 100,就會發生日誌換行。
4843
Database Commits 表示 DFS 複寫服務所執行的資料庫交付操作數。此計數器可從資料庫的角度指出 DFS 複寫服務的使用密集度。
4845
Database Lookups 表示 DFS 複寫服務所執行的資料庫搜尋操作數。此計數器可從資料庫的角度指出 DFS 複寫服務的使用密集度。
5099
這一組計數器會對工作者處理序公開與 Windows 處理序啟用服務 (WAS) 相關的計數器。
5101
工作者處理序所服務的總要求數。這個計數器只有在應用程式集區有啟用以要求為主的回收時才有意義。
5103
處理序接收的狀況 Ping 總數。
5105
處理序接收的執行階段查詢總數。
5107
在工作者處理序中目前使用中的接聽程式通道數。
5109
在工作者處理序中目前使用中的通訊協定處理常式數。
5111
工作者處理序從 Windows 處理序啟用服務 (WAS) 接收的訊息總數。
5113
工作者處理序傳送到 Windows 處理序啟用服務 (WAS) 的訊息總數。
5115
工作者處理序回應最近一個狀況 Ping 所花費的時間 (以 100 奈秒為增加量)。
2223
Generic IKE 及 Auth-IP 是一組 Internet Protocol Security (IPsec) Internet Key Exchange (IKE) 及 Authenticated IP (AuthIP) 計數器,它們是通用的計數器,因此不需要套用至任何特定的網際網路通訊協定版本。
2225
IKE Main Mode Negotiation Time 是指上次交涉 IKE Main Mode 安全性關聯時花費的毫秒數。
2227
AuthIP Main Mode Negotiation Time 是指上次交涉經過驗證的 IP Main Mode 安全性關聯時花費的毫秒數。
2229
IKE Quick Mode Negotiation Time 是指上次交涉 IKE Quick Mode 安全性關聯時花費的毫秒數。
2231
AuthIP Quick Mode Negotiation Time 是指上次交涉 Authenticated IP Quick Mode 安全性關聯時花費的毫秒數。
2233
Extended Mode Negotiation Time 是指上次交涉 Extended Mode 安全性關聯時花費的毫秒數。
2235
每秒 Packets Received 是指收到已確認 ipsec 封包的速率。
2237
每秒 Invalid Packets Received 是指收到無效 IPsec 封包的速率。
2239
Successful Negotiations 是指上次啟動 IPsec 後,完成 IKE 及 AuthIP 交涉的數目。
2241
Successful Negotiations 是指每秒完成 IKE 及 AuthIP 交涉的速率。
2243
Failed Negotiations 是指上次啟動 IPsec 後,IKE 及 AuthIP 交涉失敗的數目。
2245
每秒 Failed Negotiations 是指嘗試進行 IKE 及 AuthIP 交涉失敗的速率。
2103
IPsec AuthIPv4 是一組網際網路通訊協定安全性 (IPsec) Authenticated IP (AuthIP) 計數器,它可套用至透過網際網路通訊協定第 4 版執行的流量及連線。
2105
Active Main Mode SAs 是指目前作用中的 Main Mode Security Association 數目。
2107
Pending Main Mode Negotiations 是指擱置中的 Main Mode 交涉數目。
2109
Main Mode Negotiations 是指上次啟動 IPsec 後,嘗試進行 Main Mode 交涉的數目。
2111
每秒 Main Mode Negotiations 是指嘗試進行 Main Mode 交涉的速率。
2113
Successful Main Mode Negotiations 是指上次啟動 IPsec 後,所完成的 Main Mode 交涉數目。
2115
每秒 Successful Main Mode Negotiations 是指完成 Main Mode 交涉的速率。
2117
Failed Main Mode Negotiations 是指上次啟動 IPsec 後,Main Mode 交涉失敗的數目。
2119
每秒 Failed Main Mode Negotiations 是指 Main Mode 交涉失敗的速率。
2121
Main Mode Negotiation Requests Received 是指上次啟動 IPsec 後,由對等起始的 Main Mode 交涉數目。
2123
每秒 Main Mode Negotiation Requests Received 是指由對等起始的 Main Mode 交涉速率。
2125
Main Mode SAs That Used Impersonation 是指上次 IPsec 啟動後,使用模擬完成 Main Mode Security Association 的數目。
2127
每秒 Main Mode SAs That Used Impersonation 是指使用模擬完成 Main Mode Security Association 的速率。
2129
Active Quick Mode SAs 是指目前作用中的 Quick Mode Security Association 數目。
2131
Pending Quick Mode Negotiations 是指擱置中的 Quick Mode 交涉數目。
2133
Quick Mode Negotiations 是指上次啟動 IPsec 後,嘗試進行 Quick Mode 交涉的數目。
2135
每秒 Quick Mode Negotiations 是指嘗試進行 Quick Mode 交涉的速率。
2137
Successful Quick Mode Negotiations 是指上次啟動 IPsec 後,所完成的 Quick Mode 交涉數目。
2139
每秒 Successful Quick Mode Negotiations 是指完成 Quick Mode 交涉的速率。
2141
Failed Quick Mode Negotiations 是指上次啟動 IPsec 後, Quick Mode 交涉失敗的數目。
2143
每秒 Failed Quick Mode Negotiations 是指 Quick Mode 交涉失敗的速率。
2145
Active Extended Mode SAs 是指目前作用中的 Extended Mode Security Association 數目。
2147
Pending Extended Mode Negotiations 是指擱置中的 Extended Mode 交涉數目。
2149
Extended Mode Negotiations 是指上次啟動 IPsec 後,嘗試進行 Extended Mode 交涉的數目。
2151
每秒 Extended Mode Negotiations 是指嘗試進行 Extended Mode 交涉的速率。
2153
Successful Extended Mode negotiations 是指上次啟動 IPsec 後,所完成的 Extended Mode 交涉數目。
2155
每秒 Successful Extended Mode negotiations 是指完成 Extended Mode 交涉的速率。
2157
Failed Extended Mode Negotiations 是指上次啟動 IPsec 後,Extended Mode 交涉失敗的數目。
2159
每秒 Failed Extended Mode Negotiations 是指 Extended Mode 交涉失敗的速率。
2161
Extended Mode SAs That Used Impersonation 是指上次啟動 IPsec 後,使用模擬完成 Extended Mode Security Association 的數目。
2163
IPsec Auth-IPv6 是一組 Internet Protocol Security Authenticated Internet Protocol 計數器,它可套用至透過網際網路通訊協定第 6 版進行的傳輸及連線。
2165
Active Main Mode SAs 是指目前作用中的 Main Mode Security Association 數目。
2167
Pending Main Mode Negotiations 是指擱置中的 Main Mode 交涉數目。
2169
Main Mode Negotiations 是指上次啟動 IPsec 後,嘗試進行 Main Mode 交涉的數目。
2171
每秒 Main Mode Negotiations 是指嘗試進行 Main Mode 交涉的速率。
2173
Successful Main Mode Negotiations 是指上次啟動 IPsec 後,所完成的 Main Mode 交涉數目。
2175
每秒 Successful Main Mode Negotiations 是指完成 Main Mode 交涉的速率。
2177
Failed Main Mode Negotiations 是指上次啟動 IPsec 後,Main Mode 交涉失敗的數目。
2179
每秒 Failed Main Mode Negotiations 是指 Main Mode 交涉失敗的速率。
2181
Main Mode Negotiation Requests Received 是指上次啟動 IPsec 後,由對等起始的 Main Mode 交涉數目。
2183
每秒 Main Mode Negotiation Requests Received 是指由對等起始的 Main Mode 交涉速率。
2185
Main Mode SAs That Used Impersonation 是指上次 IPsec 啟動後,使用模擬完成 Main Mode Security Association 的數目。
2187
每秒 Main Mode SAs That Used Impersonation 是指使用模擬完成 Main Mode Security Association 的速率。
2189
Active Quick Mode SAs 是指目前作用中的 Quick Mode Security Association 數目。
2191
Pending Quick Mode Negotiations 是指擱置中的 Quick Mode 交涉數目。
2193
Quick Mode Negotiations 是指上次啟動 IPsec 後,嘗試進行 Quick Mode 交涉的數目。
2195
每秒 Quick Mode Negotiations 是指嘗試進行 Quick Mode 交涉的速率。
2197
Successful Quick Mode Negotiations 是指上次啟動 IPsec 後,所完成的 Quick Mode 交涉數目。
2199
每秒 Successful Quick Mode Negotiations 是指完成 Quick Mode 交涉的速率。
2201
Failed Quick Mode Negotiations 是指上次啟動 IPsec 後, Quick Mode 交涉失敗的數目。
2203
每秒 Failed Quick Mode Negotiations 是指 Quick Mode 交涉失敗的速率。
2205
Active Extended Mode SAs 是指目前作用中的 Extended Mode Security Association 數目。
2207
Pending Extended Mode Negotiations 是指擱置中的 Extended Mode 交涉數目。
2209
Extended Mode Negotiations 是指上次啟動 IPsec 後,嘗試進行 Extended Mode 交涉的數目。
2211
每秒 Extended Mode Negotiations 是指嘗試進行 Extended Mode 交涉的速率。
2213
Successful Extended Mode negotiations 是指上次啟動 IPsec 後,所完成的 Extended Mode 交涉數目。
2215
每秒 Successful Extended Mode negotiations 是指完成 Extended Mode 交涉的速率。
2217
Failed Extended Mode Negotiations 是指上次啟動 IPsec 後,Extended Mode 交涉失敗的數目。
2219
每秒 Failed Extended Mode Negotiations 是指 Extended Mode 交涉失敗的速率。
2221
Extended Mode SAs That Used Impersonation 是指上次啟動 IPsec 後,使用模擬完成 Extended Mode Security Association 的數目。
2027
IPsec IKEv4 是一組 Internet Protocol security (IPsec) Internet Key Exchange (IKE) 計數器,它可套用至透過網際網路通訊協定第 4 版進行的傳輸及連線。
2029
Active Main Mode SAs 是指目前作用中的 Main Mode Security Association 數目。
2031
Pending Main Mode Negotiations 是指擱置中的 Main Mode 交涉數目。
2033
Main Mode Negotiations 是指上次啟動 IPsec 後,嘗試進行 Main Mode 交涉的數目。
2035
每秒 Main Mode Negotiations 是指嘗試進行 Main Mode 交涉的速率。
2037
Successful Main Mode Negotiations 是指上次啟動 IPsec 後,所完成的 Main Mode 交涉數目。
2039
每秒 Successful Main Mode Negotiations 是指完成 Main Mode 交涉的速率。
2041
Failed Main Mode Negotiations 是指上次啟動 IPsec 後,Main Mode 交涉失敗的數目。
2043
每秒 Failed Main Mode Negotiations 是指 Main Mode 交涉失敗的速率。
2045
Main Mode Negotiation Requests Received 是指上次啟動 IPsec 後,由對等起始的 Main Mode 交涉數目。
2047
每秒 Main Mode Negotiation Requests Received 是指由對等起始的 Main Mode 交涉速率。
2049
Active Quick Mode SAs 是指目前作用中的 Quick Mode Security Association 數目。
2051
Pending Quick Mode Negotiations 是指擱置中的 Quick Mode 交涉數目。
2053
Quick Mode Negotiations 是指上次啟動 IPsec 後,嘗試進行 Quick Mode 交涉的數目。
2055
每秒 Quick Mode Negotiations 是指嘗試進行 Quick Mode 交涉的速率。
2057
Successful Quick Mode Negotiations 是指上次啟動 IPsec 後,所完成的 Quick Mode 交涉數目。
2059
每秒 Successful Quick Mode Negotiations 是指完成 Quick Mode 交涉的速率。
2061
Failed Quick Mode Negotiations 是指上次啟動 IPsec 後, Quick Mode 交涉失敗的數目。
2063
每秒 Failed Quick Mode Negotiations 是指 Quick Mode 交涉失敗的速率。
2065
IPsec IKEv6 是一組 Internet Protocol security (IPsec) Internet Key Exchange (IKE) 計數器,它可套用至透過網際網路通訊協定第 6 版進行的傳輸及連線。
2067
Active Main Mode SAs 是指目前作用中的 Main Mode Security Association 數目。
2069
Pending Main Mode Negotiations 是指擱置中的 Main Mode 交涉數目。
2071
Main Mode Negotiations 是指上次啟動 IPsec 後,嘗試進行 Main Mode 交涉的數目。
2073
每秒 Main Mode Negotiations 是指嘗試進行 Main Mode 交涉的速率。
2075
Successful Main Mode Negotiations 是指上次啟動 IPsec 後,所完成的 Main Mode 交涉數目。
2077
每秒 Successful Main Mode Negotiations 是指完成 Main Mode 交涉的速率。
2079
Failed Main Mode Negotiations 是指上次啟動 IPsec 後,Main Mode 交涉失敗的數目。
2081
每秒 Failed Main Mode Negotiations 是指 Main Mode 交涉失敗的速率。
2083
Main Mode Negotiation Requests Received 是指上次啟動 IPsec 後,由對等起始的 Main Mode 交涉數目。
2085
每秒 Main Mode Negotiation Requests Received 是指由對等起始的 Main Mode 交涉速率。
2087
Active Quick Mode SAs 是指目前作用中的 Quick Mode Security Association 數目。
2089
Pending Quick Mode Negotiations 是指擱置中的 Quick Mode 交涉數目。
2091
Quick Mode Negotiations 是指上次啟動 IPsec 後,嘗試進行 Quick Mode 交涉的數目。
2093
每秒 Quick Mode Negotiations 是指嘗試進行 Quick Mode 交涉的速率。
2095
Successful Quick Mode Negotiations 是指上次啟動 IPsec 後,所完成的 Quick Mode 交涉數目。
2097
每秒 Successful Quick Mode Negotiations 是指完成 Quick Mode 交涉的速率。
2099
Failed Quick Mode Negotiations 是指上次啟動 IPsec 後, Quick Mode 交涉失敗的數目。
2101
每秒 Failed Quick Mode Negotiations 是指 Quick Mode 交涉失敗的速率。
7181
服務的 ServiceModel 效能計數器
7183
指向此服務的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.Calls.aspx
7185
每秒鐘指向此服務的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.CallsPerSecond.aspx
7187
指向此服務,且進行中的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.CallsOutstanding.aspx
7189
在此服務發生未處理例外狀況的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.CallsFailed.aspx
7191
每秒鐘在此服務發生未處理例外狀況的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.CallsFailedPerSecond.aspx
7193
指向此服務並傳回錯誤的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.CallsFaulted.aspx
7195
每秒鐘指向此服務並傳回錯誤的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.CallsFaultedPerSecond.aspx
7197
指向此服務呼叫程序的平均持續時間。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.CallDuration.aspx
7199
指向此服務且發生驗證失敗的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.SecurityValidationAuthenticationFailures.aspx
7201
每秒鐘指向此服務且發生驗證失敗的呼叫程序數。 http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.SecurityValidationAuthenticationFailuresPerSecond.aspx
7203
在此服務授權失敗的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.SecurityCallsNotAuthorized.aspx
7205
每秒鐘在此服務授權失敗的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.SecurityCallsNotAuthorizedPerSecond.aspx
7207
服務的執行個體總數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.Instances.aspx
7209
每秒鐘服務執行個體的建立速率。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.InstancesPerSecond.aspx
7211
在此服務發生錯誤的可信賴傳訊工作階段數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.RMSessionsFaulted.aspx
7213
每秒鐘在此服務發生錯誤的可信賴傳訊工作階段數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.RMSessionsFaultedPerSecond.aspx
7215
在此服務丟棄的可信賴傳訊訊息數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.RMMessagesDropped.aspx
7217
每秒鐘在此服務丟棄的可信賴傳訊訊息數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.RMMessagesDroppedPerSecond.aspx
7219
指向此服務作業的流量交易數。當傳送到此服務的訊息中包含交易識別碼時,此計數器就會遞增。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.TxFlowed.aspx
7221
每秒鐘指向此服務作業的流量交易數。當傳送到此服務的訊息中包含交易識別碼時,此計數器就會遞增。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.TxFlowedPerSecond.aspx
7223
此服務中已確認結果的交易作業數。已經完全確認在這類作業下完成的結果。會根據作業中完成的結果,更新資源。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.TxCommitted.aspx
7225
每秒鐘此服務中已確認結果的交易作業數。已經完全確認在這類作業下完成的結果。會根據作業中完成的結果,更新資源。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.TxCommittedPerSecond.aspx
7227
此服務中已取消的交易作業數。已經復原在這類作業下完成的結果。會將資源還原為之前的狀態。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.TxAborted.aspx
7229
每秒鐘此服務中已取消的交易作業數。已經復原在這類作業下完成的結果。會將資源還原為之前的狀態。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.TxAbortedPerSecond.aspx
7231
此服務中結果不確定的交易作業數。若產生的結果屬於不確定狀態,則完成的工作也會是不確定狀態。會保留資源,擱置結果。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.TxInDoubt.aspx
7233
每秒鐘此服務中結果不確定的交易作業數。若產生的結果屬於不確定狀態,則完成的工作也會是不確定狀態。會保留資源,擱置結果。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.TxInDoubtPerSecond.aspx
7235
由已佇列之傳輸將傳送到此服務的訊息標示為已破壞的訊息數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.MsmqPoisonMessages.aspx
7237
每秒鐘由已佇列之傳輸將傳送到此服務的訊息標示為已破壞的訊息數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.MsmqPoisonMessagesPerSecond.aspx
7239
由已佇列之傳輸拒絕傳送到此服務的訊息數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.MsmqRejectedMessages.aspx
7241
每秒鐘由已佇列之傳輸拒絕傳送到此服務的訊息數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.MsmqRejectedMessagesPerSecond.aspx
7243
由已佇列之傳輸丟棄傳送到此服務的訊息數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.MsmqDroppedMessages.aspx
7245
每秒鐘由已佇列之傳輸丟棄傳送到此服務的訊息數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.MsmqDroppedMessagesPerSecond.aspx
7247
發送器中等待要處理或正在處理的呼叫程序數,表示最大呼叫程序節流的百分比。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.CallsPercentOfMaxCalls.aspx
7249
等待例項的使用中例項和訊息數,表示最大例項節流的百分比。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.InstancessPercentOfMaxInstances.aspx
7251
等待工作階段的使用中工作階段和訊息數,表示最大工作階段節流的百分比。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Service.SessionsPercentOfMaxSessions.aspx
7253
7255
7257
7301
ServiceModelOperation 4.0.0.0 效能計數器
7303
指向此作業的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.Calls.aspx
7305
每秒鐘指向此作業的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.CallsPerSecond.aspx
7307
指向此作業,且進行中的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.CallsOutstanding.aspx
7309
在此作業發生未處理例外狀況的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.CallsFailed.aspx
7311
每秒鐘在此作業發生未處理例外狀況的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.CallsFailedPerSecond.aspx
7313
指向此作業並傳回錯誤的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.CallsFaulted.aspx
7315
每秒鐘指向此作業並傳回錯誤的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.CallsFaultedPerSecond.aspx
7317
指向此作業呼叫程序的平均持續時間。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.CallDuration.aspx
7319
指向此作業且發生驗證失敗的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.SecurityValidationAuthenticationFailures.aspx
7321
每秒鐘指向此作業且發生驗證失敗的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.SecurityValidationAuthenticationFailuresPerSecond.aspx
7323
在此作業授權失敗的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.SecurityCallsNotAuthorized.aspx
7325
每秒鐘在此作業授權失敗的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.SecurityCallsNotAuthorizedPerSecond.aspx
7327
指向此作業的流量交易數。無論何時當交易識別碼存在於傳送到作業的訊息中,此計數器會隨之增加。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.TxFlowed.aspx
7329
每秒鐘指向此作業的流量交易數。無論何時當交易識別碼存在於傳送到作業的訊息中,此計數器會隨之增加。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.TxFlowedPerSecond.aspx
7331
指向此作業呼叫程序的平均持續時間。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Operation.CallDuration.aspx
7261
端點的 ServiceModel 效能計數器
7263
指向此端點的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.Calls.aspx
7265
每秒鐘指向此端點的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.CallsPerSecond.aspx
7267
指向此端點,且進行中的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.CallsOutstanding.aspx
7269
在此端點發生未處理例外狀況的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.CallsFailed.aspx
7271
每秒鐘在此端點發生未處理例外狀況的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.CallsFailedPerSecond.aspx
7273
指向此端點並傳回錯誤的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.CallsFaulted.aspx
7275
每秒鐘指向此端點並傳回錯誤的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.CallsFaultedPerSecond.aspx
7277
指向此端點呼叫程序的平均歷時。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.CallDuration.aspx
7279
指向此端點且發生驗證失敗的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.SecurityValidationAuthenticationFailures.aspx
7281
每秒鐘指向此端點且發生驗證失敗的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.SecurityValidationAuthenticationFailuresPerSecond.aspx
7283
在此端點授權失敗的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.SecurityCallsNotAuthorized.aspx
7285
每秒鐘在此端點授權失敗的呼叫程序數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.SecurityCallsNotAuthorizedPerSecond.aspx
7287
在此端點發生錯誤的可信賴傳訊工作階段數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.RMSessionsFaulted.aspx
7289
每秒鐘在此端點發生錯誤的可信賴傳訊工作階段數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.RMSessionsFaultedPerSecond.aspx
7291
在此端點丟棄的可信賴傳訊訊息數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.RMMessagesDropped.aspx
7293
每秒鐘在此端點丟棄的可信賴傳訊訊息數。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.RMMessagesDroppedPerSecond.aspx
7295
指向此端點作業的流量交易數。當傳送到此端點的訊息中包含交易識別碼時,此計數器就會遞增。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.TxFlowed.aspx
7297
每秒鐘指向此端點作業的流量交易數。當傳送到此端點的訊息中包含交易識別碼時,此計數器就會遞增。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.TxFlowedPerSecond.aspx
7299
指向此端點呼叫程序的平均歷時。http://msdn.microsoft.com/zh-TW/library/System.ServiceModel.Diagnostics.PerformanceCounters.Endpoint.CallDuration.aspx
4681
Set of request queue counters
4683
Number of requests in the queue
4685
Age of the oldest request in the queue
4687
Rate at which requests are arriving in the queue
4689
Rate at which requests are rejected from the queue
4691
Total number of requests rejected from the queue
4693
Rate of cache hits for the queue
4661
Set of URL Group-specific counters
4663
Rate of sending data by HTTP service for this site
4665
Rate of received data by HTTP service for this site
4667
Rate of total bytes transferred (sent and received) by HTTP service for this site
4669
Number of current connections established for this site
4671
Maximum number of concurrent connections established for this site
4673
Rate at which connection attempts are being made for this site
4675
Rate at which GET method requests are made for this site
4677
Rate at which HEAD method requests are made for this site
4679
Total number of HTTP requests made for this site
4647
Set of HTTP service counters
4649
Total number of URIs currently cached by the kernel
4651
Total number of URIs added to the kernel since service startup
4653
Total number of successful lookups in the kernel URI cache
4655
Total number of unsuccessful lookups in the kernel URI cache
4657
Total number of kernel URI cache flushes (complete or partial) since service startup
4659
Total number of URIs that have been removed from the kernel URI cache since service startup
4633
用於測量 Netlogon 效能的計數器。
4635
目前等待取得信號的執行緒號碼。
4637
目前持有信號的執行緒號碼。
4639
在安全通道連線存留時間內 (或者自從系統為 _Total 開機後) 取得信號的總次數。
4641
在安全通道連線存留時間內 (或者自從系統為 _Total 開機後) 執行緒等待信號逾時的總次數。
4643
上次取樣中持有信號的平均時間。
4645
用來計算持有信號平均時間的基礎值。
3419
可信賴平台模組 (TPM) 基本服務元件的效能計數器。
3421
目前使用中的 TBS 範圍數目。
3423
TBS 目前管理的資源數目。
There is chinese in the regs because I install the chinese edtion