1 | Processor Information |
Processor Information |
3 | Processor Information 성능 카운터 집합은 다양한 프로세서 활동을 측정하는 카운터로 구성됩니다. 프로세서는 컴퓨터에서 산술 및 논리 연산을 수행하고, 주변 장치에서 작업을 시작하고, 프로세스 스레드를 실행하는 컴퓨터의 일부입니다. 한 컴퓨터에는 여러 프로세서가 들어 있을 수 있습니다. 일부 컴퓨터에서는 프로세서가 실제 메모리와 같은 하드웨어 리소스를 공유하는 NUMA 노드로 구성되어 있습니다. 프로세서 정보 카운터 집합은 각 프로세서를 숫자 쌍으로 나타내며, 숫자 쌍의 첫 번째 수는 NUMA 노드 번호이고 두 번째 수는 해당 NUMA 노드에 있는 프로세서의 0 기반 인덱스입니다. NUMA 노드를 사용하지 않는 컴퓨터의 경우 첫 번째 수는 0입니다. |
The Processor Information performance counter set consists of counters that measure aspects of processor activity. The processor is the part of the computer that performs arithmetic and logical computations, initiates operations on peripherals, and runs the threads of processes. A computer can have multiple processors. On some computers, processors are organized in NUMA nodes that share hardware resources such as physical memory. The Processor Information counter set represents each processor as a pair of numbers, where the first number is the NUMA node number and the second number is the zero-based index of the processor within that NUMA node. If the computer does not use NUMA nodes, the first number is zero. |
5 | % Processor Time |
% Processor Time |
7 | % Processor Time은 프로세서가 작업 중인 스레드를 실행하는 데 걸리는 시간의 백분율입니다. 이 시간은 프로세서가 유휴 스레드를 실행하는 데 걸리는 시간의 백분율을 측정한 다음 100%에서 이 값을 빼서 계산합니다. 각 프로세서에는 실행할 다른 스레드가 없는 경우 시간이 누적되는 유휴 스레드가 있습니다. 이 카운터는 프로세서 동작의 주요 표시기이며 샘플 간격 중에 관찰되는 사용 시간의 평균 백분율을 표시합니다. 프로세서가 유휴 상태인지에 대한 계정 계산은 시스템 클록 틱에 대한 내부 샘플링 간격에 따라 수행됩니다. 현재 시판 중인 고속 프로세서의 경우 프로세서가 시스템 클록 샘플링 간격 사이의 스레드를 서비스하느라 너무 많은 시간을 소비할 수 있으므로 % Processor Time은 프로세서 이용률을 올바르게 반영하지 못할 수 있습니다. 작업 부하 기반 타이머 응용 프로그램은 샘플이 실행된 직후에 타이머가 신호를 받기 때문에 부정확하게 측정될 수 있는 응용 프로그램의 한 예입니다. |
% 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 to which time is accumulated 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 tick. 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 | % User Time |
% User Time |
11 | % User Time은 사용자 모드에서 소비한 프로세스 시간의 백분율입니다. 사용자 모드는 응용 프로그램, 환경 하위 시스템 및 전체 하위 시스템을 위해 만든 제한된 처리 모드입니다. 대체할 수 있는 특권 모드는 운영 체제 구성 요소를 위해 만들어졌으며 하드웨어 및 모든 메모리에 직접 액세스할 수 있습니다. 운영 체제는 운영 체제 서비스에 액세스하기 위해 응용 프로그램 스레드에서 특권 모드로 전환합니다. 이 카운터는 평균 사용 시간을 샘플 시간의 백분율로 표시합니다. |
% 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. |
13 | % Privileged Time |
% Privileged Time |
15 | % Privileged Time은 프로세스 스레드가 특권 모드에서 코드를 실행하면서 경과된 시간을 백분율로 표시한 것입니다. Windows 시스템 서비스가 호출되면 서비스는 시스템 전용 데이터를 액세스하기 위해 흔히 특권 모드에서 실행됩니다. 그러한 데이터는 사용자 모드에서 실행되는 스레드가 액세스하지 못하도록 보호됩니다. 시스템 호출은 페이지 폴트 또는 인터럽트가 발생할 때처럼 명시적이거나 암시적입니다. 일부 초기 운영 체제와는 달리 Windows는 사용자 및 특권 모드의 일반적인 보호뿐만 아니라 하위 시스템을 보호하기 위해 프로세스 경계를 사용합니다. 응용 프로그램을 대신하여 Windows에서 수행한 일부 작업은 프로세스의 특권 시간 및 다른 하위 시스템 프로세스에서도 나타납니다. |
% 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. |
17 | Interrupts/sec |
Interrupts/sec |
19 | Interrupts/sec는 프로세스가 받아 처리한 하드웨어 인터럽트의 평균 비율(초당 발생 횟수)입니다. 여기에 DPC는 포함되지 않으며 따로 계산됩니다. 이 값은 인터럽트를 발생시킨 시스템 클록, 마우스, 디스크, 데이터 통신 회선, 네트워크 인터페이스 카드 및 기타 주변 장치 등의 장치 동작에 대한 간접 표시기입니다. 일반적으로 장치는 작업이 완료되거나 주의가 필요한 경우에 프로세서를 인터럽트합니다. 일반 스레드 실행은 잠시 중단됩니다. 시스템 클록은 매 10 밀리초마다 프로세서를 인터럽트하여 백그라운드 인터럽트 동작을 만듭니다. 이 카운터는 최근 두 샘플에 관찰된 값을 각 샘플 간격 기간으로 나눈 값의 차이를 표시합니다. |
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. |
21 | % DPC Time |
% DPC Time |
23 | % DPC Time은 샘플 간격 동안 DPC(유예된 프로시저 호출)를 받아 처리하는 데 소비한 시간의 백분율입니다. DPC는 표준 인터럽트보다 낮은 우선 순위로 실행되는 인터럽트입니다. DPC는 특권 모드에서 실행되므로 % DPC Time은 % Privileged Time의 구성 요소입니다. DPC는 따로 계산되며 인터럽트 카운터의 구성 요소가 아닙니다. 이 카운터는 평균 사용 시간을 샘플 시간의 백분율로 표시합니다. |
% 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. |
25 | % Interrupt Time |
% Interrupt Time |
27 | % Interrupt Time은 프로세스가 샘플 간격 동안 받아 처리한 하드웨어 인터럽트의 수입니다. 이 값은 시스템 클록, 마우스, 디스크 드라이버, 데이터 통신 회선, 네트워크 인터페이스 카드 및 기타 주변 장치 등과 같이 인터럽트를 발생시킨 장치 동작의 간접 표시기입니다. 일반적으로 이러한 장치는 작업을 완료하거나 주의가 필요한 경우에 프로세서를 인터럽트합니다. 인터럽트 동안 일반적인 스레드 실행은 잠시 중단됩니다. 대부분의 시스템 클록은 매 10 밀리초마다 프로세서를 인터럽트하여 백그라운드 인터럽트 작업을 만듭니다. 이 카운터는 평균 사용 시간을 샘플 시간의 백분율로 표시합니다. |
% 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. |
29 | DPCs Queued/sec |
DPCs Queued/sec |
31 | DPCs Queued/sec는 DPC(유예된 프로시저 호출)를 해당 프로세스의 DPC 큐에 추가하는 평균 비율(초당 발생 횟수)입니다. DPC는 표준 인터럽트보다 낮은 우선 순위로 실행되는 인터럽트입니다. 각 프로세서는 자신의 DPC 큐를 갖습니다. 이 카운터는 큐에 있는 DPC 수가 아니라 DPC가 큐에 추가되는 비율을 측정합니다. 이 카운터는 최근 두 샘플에 관찰된 값을 각 샘플 간격 기간으로 나눈 값의 차이를 표시합니다. |
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. |
33 | DPC Rate |
DPC Rate |
35 | DPC Rate는 프로세서 클록의 타이머 틱 간에 DPC(유예된 프로시저 호출)를 해당 프로세스의 DPC 큐에 추가하는 비율입니다. DPC는 표준 인터럽트보다 낮은 우선 순위로 실행되는 인터럽트입니다. 각 프로세서는 자신의 DPC 큐를 갖습니다. 이 카운터는 큐에 있는 DPC 수가 아니라 DPC가 큐에 추가되는 비율을 측정합니다. 이 카운터는 최근에 관찰된 값만 표시하며 평균값은 아닙니다. |
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. |
37 | % Idle Time |
% Idle Time |
39 | % Idle Time은 프로세서가 샘플 간격 동안 유휴 상태인 시간의 백분율입니다. |
% Idle Time is the percentage of time the processor is idle during the sample interval |
41 | % C1 Time |
% C1 Time |
43 | % C1 Time은 프로세서가 C1 저전원 유휴 상태에서 소비한 시간의 백분율입니다. % C1 Time은 총 프로세서 유휴 시간의 하위 집합입니다. C1 저전원 유휴 상태에서는 프로세서가 전체 컨텍스트를 유지하며 실행 상태로 빠르게 복귀할 수 있습니다. 모든 시스템이 % C1 상태를 지원하지는 않습니다. |
% 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. |
45 | % C2 Time |
% C2 Time |
47 | % C2 Time은 프로세서가 C2 저전원 유휴 상태에서 소비한 시간의 백분율입니다. % C2 Time은 총 프로세서 유휴 시간의 하위 집합입니다. C2 저전원 유휴 상태에서는 프로세서가 시스템 캐시의 컨텍스트를 유지 관리할 수 있습니다. C2 전원 상태는 낮은 전원 상태이며 C1보다 복귀 시간이 빠릅니다. 모든 시스템이 C2 상태를 지원하지는 않습니다. |
% 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. |
49 | % C3 Time |
% C3 Time |
51 | % C3 Time은 프로세서가 C3 저전원 유휴 상태에서 소비한 시간의 백분율입니다. % C3 Time은 총 프로세서 유휴 시간의 하위 집합입니다. C3 저전원 유휴 상태에서는 프로세서가 시스템 캐시의 일관성을 유지할 수 없습니다. C3 전원 상태는 낮은 전원 상태이며 C2보다 복귀 시간이 빠릅니다. 모든 시스템이 C3 상태를 지원하지는 않습니다. |
% 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. |
53 | C1 Transitions/sec |
C1 Transitions/sec |
55 | C1 Transitions/sec는 CPU가 C1 저전원 유휴 상태로 들어가는 비율입니다. CPU는 유휴 상태가 길어질 때 C1 상태로 들어가며 인터럽트 발생 시에만 이 상태에서 빠져 나옵니다. 이 카운터는 최근 두 샘플에 관찰된 값을 각 샘플 간격 기간으로 나눈 값의 차이를 표시합니다. |
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. |
57 | C2 Transitions/sec |
C2 Transitions/sec |
59 | C1 Transitions/sec는 CPU가 C2 저전원 유휴 상태로 들어가는 비율입니다. CPU는 유휴 상태가 길어질 때 C2 상태로 들어가며 인터럽트 발생 시에만 이 상태에서 빠져 나옵니다. 이 카운터는 최근 두 샘플에 관찰된 값을 각 샘플 간격 기간으로 나눈 값의 차이를 표시합니다. |
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. |
61 | C3 Transitions/sec |
C3 Transitions/sec |
63 | C3 Transitions/sec는 CPU가 C3 저전원 유휴 상태로 들어가는 비율입니다. CPU는 유휴 상태가 길어질 때 C3 상태로 들어가며 인터럽트 발생 시에만 이 상태에서 빠져 나옵니다. 이 카운터는 최근 두 샘플에 관찰된 값을 각 샘플 간격 기간으로 나눈 값의 차이를 표시합니다. |
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. |
65 | % Priority Time |
% Priority Time |
67 | % Priority Time은 프로세서가 우선 순위가 낮지 않은 스레드를 실행하면서 경과된 시간을 백분율로 표시한 것입니다. 이 시간은 프로세서가 우선 순위가 낮은 스레드 또는 유휴 스레드를 실행하는 데 걸리는 시간의 백분율을 측정한 다음 100%에서 이 값을 빼서 계산합니다. 각 프로세서에는 실행할 다른 스레드가 없을 경우 시간이 누적되는 유휴 스레드가 있습니다. 이 카운터는 우선 순위가 낮은 백그라운드 작업을 제외하고 샘플 간격 중에 관찰되는 사용 시간의 평균 백분율을 표시합니다. 프로세서가 유휴 상태인지에 대한 계정 계산은 시스템 클록 틱에 대한 내부 샘플링 간격에 따라 수행됩니다. 프로세서가 시스템 클록 샘플링 간격 사이의 스레드를 서비스하느라 너무 많은 시간을 소비할 수 있으므로 % Priority Time은 프로세서 이용률을 올바르게 반영하지 못할 수 있습니다. 작업 부하 기반 타이머 응용 프로그램은 샘플이 실행된 직후에 타이머가 신호를 받기 때문에 부정확하게 측정될 수 있는 응용 프로그램의 한 예입니다. |
% Priority Time is the percentage of elapsed time that the processor spends executing threads that are not low priority. It is calculated by measuring the percentage of time that the processor spends executing low priority threads or the idle thread and then subtracting that value from 100%. (Each processor has an idle thread to which time is accumulated when no other threads are ready to run). This counter displays the average percentage of busy time observed during the sample interval excluding low priority background work. 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 tick. % Priority 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. |
69 | Parking Status |
Parking Status |
71 | Parking Status는 프로세서가 파킹되었는지 여부를 나타냅니다. |
Parking Status represents whether a processor is parked or not. |
73 | Processor Frequency |
Processor Frequency |
75 | Processor Frequency는 현재 프로세서의 주파수(MHz)입니다. 일부 프로세서는 Windows의 제어를 받지 않고 주파수를 규제할 수 있습니다. Processor Frequency는 이러한 시스템에서 실제 프로세서 주파수를 정확하게 반영하지 않습니다. % Processor Performance를 대신 사용하세요. |
Processor Frequency is the frequency of the current processor in megahertz. Some processors are capable of regulating their frequency outside of the control of Windows. Processor Frequency will not accurately reflect actual processor frequency on these systems. Use % Processor Performance instead. |
77 | % of Maximum Frequency |
% of Maximum Frequency |
79 | % of Maximum Frequency는 현재 프로세서의 최대 주파수의 백분율입니다. 일부 프로세서는 Windows의 제어를 받지 않고 주파수를 규제할 수 있습니다. % of Maximum Frequency는 이러한 시스템에서 실제 프로세서 주파수를 정확하게 반영하지 않습니다. 대신 % Processor Performance를 사용하십시오. |
% of Maximum Frequency is the percentage of the current processor's maximum frequency. Some processors are capable of regulating their frequency outside of the control of Windows. % of Maximum Frequency will not accurately reflect actual processor frequency on these systems. Use % Processor Performance instead. |
81 | Processor State Flags |
Processor State Flags |
83 | 프로세서 상태 플래그 |
Processor State Flags |
85 | Synchronization |
Synchronization |
87 | Synchronization 성능 개체는 커널 동기화에 대한 카운터로 구성됩니다. 동기화 개체는 각 프로세서를 해당 개체의 인스턴스로 나타냅니다. |
The Synchronization performance object consists of counters for kernel synchronization. The synchronization object represents each processor as an instance of the object. |
89 | Spinlock Acquires/sec |
Spinlock Acquires/sec |
91 | Spinlock acquires/sec는 spinlock 획득 비율입니다. 여기에는 기본 spinlock, 대기 중인 spinlock, 스택에 대기 중인 spinlock 및 공유 spinlock 획득이 포함됩니다. |
Spinlock acquires/sec is the rate of spinlock acquisitions. It includes the basic spinlocks, queued spinlocks, in-stack queued spinlocks, and shared spinlocks acquisitions. |
93 | Spinlock Contentions/sec |
Spinlock Contentions/sec |
95 | Spinlock contentions/sec는 spinlock 경합 비율입니다. 여기에는 기본 spinlock, 대기 중인 spinlock, 스택에 있는 대기 중인 spinlock 및 공유 spinlock 경합이 포함됩니다. |
Spinlock contentions/sec is the rate of spinlock contentions. It includes the basic spinlocks, queued spinlocks, in-stack queued spinlocks, and shared spinlocks contentions. |
97 | Spinlock Spins/sec |
Spinlock Spins/sec |
99 | Spinlock spins/sec는 spinlock 회전 비율입니다. 여기에는 기본 spinlock, 대기 중인 spinlock, 스택에 있는 대기 중인 spinlock 및 공유 spinlock을 획득하기 위한 회전이 포함됩니다. |
Spinlock spins/sec is the rate of spinlock spins. It includes the spins to acquire basic spinlocks, queued spinlocks, in-stack queued spinlocks, and shared spinlocks. |
101 | IPI Send Broadcast Requests/sec |
IPI Send Broadcast Requests/sec |
103 | IPI Send Broadcast Requests/sec는 IPI 브로드캐스트 요청의 비율입니다. |
IPI Send Broadcast Requests/sec is the rate of IPI broadcast requests. |
105 | IPI Send Routine Requests/sec |
IPI Send Routine Requests/sec |
107 | IPI Send Routine Requests/sec는 IPI 루틴 요청의 비율입니다. |
IPI Send Routine Requests/sec is the rate of IPI routine requests. |
109 | IPI Send Software Interrupts/sec |
IPI Send Software Interrupts/sec |
111 | IPI Send Software Interrrupts/sec는 소프트웨어 인터럽트의 비율입니다. |
IPI Send Software Interrrupts/sec is the rate of software interrupts. |
113 | Exec. Resource Total Initialize/sec |
Exec. Resource Total Initialize/sec |
115 | 실행 리소스에 대한 초기화 작업의 빈도입니다. |
Frequency of initialization operations on Executive Resources. |
117 | Exec. Resource Total Re-Initialize/sec |
Exec. Resource Total Re-Initialize/sec |
119 | 실행 리소스에 대한 재초기화 작업의 빈도입니다. |
Frequency of re-initialization operations on Executive Resources. |
121 | Exec. Resource Total Delete/sec |
Exec. Resource Total Delete/sec |
123 | 실행 리소스에 대한 삭제 작업의 빈도입니다. |
Frequency of delete operations on Executive Resources. |
125 | Exec. Resource Total Acquires/sec |
Exec. Resource Total Acquires/sec |
127 | 실행 리소스에 대한 획득 작업의 빈도입니다. |
Frequency of acquire operations on Executive Resources. |
129 | Exec. Resource Total Contentions/sec |
Exec. Resource Total Contentions/sec |
131 | 실행 리소스에 대한 경합 비율입니다. |
Contention rate on Executive Resources. |
133 | Exec. Resource Total Exclusive Releases/sec |
Exec. Resource Total Exclusive Releases/sec |
135 | 실행 리소스에 대한 배타적 릴리스의 빈도입니다. |
Frequency of Exclusive releases on Executive Resources. |
137 | Exec. Resource Total Shared Releases/sec |
Exec. Resource Total Shared Releases/sec |
139 | 실행 리소스에 대한 공유 릴리스의 빈도입니다. |
Frequency of Shared releases on Executive Resources. |
141 | Exec. Resource Total Conv. Exclusive To Shared/sec |
Exec. Resource Total Conv. Exclusive To Shared/sec |
143 | 실행 리소스에 대한 공유 작업의 변환 빈도입니다. |
Frequency of convert to shared operations on Executive Resources. |
145 | Exec. Resource Attempts AcqExclLite/sec |
Exec. Resource Attempts AcqExclLite/sec |
147 | ExAcquireResourceExclusiveLite에서 실행 리소스에 대한 배타적 획득 시도의 빈도입니다. |
Frequency of acquire exclusive attempts on Executive Resources from ExAcquireResourceExclusiveLite. |
149 | Exec. Resource Acquires AcqExclLite/sec |
Exec. Resource Acquires AcqExclLite/sec |
151 | ExAcquireResourceExclusiveLite에서 첫 번째 배타적 획득의 빈도입니다. |
Frequency of first exclusive acquires from ExAcquireResourceExclusiveLite. |
153 | Exec. Resource Recursive Excl. Acquires AcqExclLite/sec |
Exec. Resource Recursive Excl. Acquires AcqExclLite/sec |
155 | ExAcquireResourceExclusiveLite에서 재귀 배타적 획득의 빈도입니다. |
Frequency of recursive exclusive acquires from ExAcquireResourceExclusiveLite. |
157 | Exec. Resource Contention AcqExclLite/sec |
Exec. Resource Contention AcqExclLite/sec |
159 | ExAcquireResourceExclusiveLite에서 배타적 획득 시도 중의 대기 빈도입니다. |
Frequency of waits during exclusive acquire attempts from ExAcquireResourceExclusiveLite. |
161 | Exec. Resource no-Waits AcqExclLite/sec |
Exec. Resource no-Waits AcqExclLite/sec |
163 | ExAcquireResourceExclusiveLite에서 배타적 획득 시도 중의 비대기 빈도입니다. |
Frequency of no-waits during exclusive acquire attempts from ExAcquireResourceExclusiveLite. |
165 | Exec. Resource Attempts AcqShrdLite/sec |
Exec. Resource Attempts AcqShrdLite/sec |
167 | ExAcquireResourceExclusiveLite에서 실행 리소스에 대한 공유 획득 시도의 빈도입니다. |
Frequency of acquire shared attempts on Executive Resources from ExAcquireResourceSharedLite. |
169 | Exec. Resource Recursive Excl. Acquires AcqShrdLite/sec |
Exec. Resource Recursive Excl. Acquires AcqShrdLite/sec |
171 | ExAcquireResourceSharedLite에서 재귀 배타적 획득의 빈도입니다. |
Frequency of recursive exclusive acquires from ExAcquireResourceSharedLite. |
173 | Exec. Resource Acquires AcqShrdLite/sec |
Exec. Resource Acquires AcqShrdLite/sec |
175 | ExAcquireResourceSharedLite에서 첫 번째 공유 획득의 빈도입니다. |
Frequency of first shared acquires from ExAcquireResourceSharedLite. |
177 | Exec. Resource Recursive Sh. Acquires AcqShrdLite/sec |
Exec. Resource Recursive Sh. Acquires AcqShrdLite/sec |
179 | ExAcquireResourceSharedLite에서 재귀 공유 획득의 빈도입니다. |
Frequency of recursive shared acquires from ExAcquireResourceSharedLite. |
181 | Exec. Resource Contention AcqShrdLite/sec |
Exec. Resource Contention AcqShrdLite/sec |
183 | ExAcquireResourceSharedLite에서 획득 시도 중의 대기 빈도입니다. |
Frequency of waits during acquire attempts from ExAcquireResourceSharedLite. |
185 | Exec. Resource no-Waits AcqShrdLite/sec |
Exec. Resource no-Waits AcqShrdLite/sec |
187 | ExAcquireResourceSharedLite에서 획득 시도 중의 비대기 빈도입니다. |
Frequency of no-waits during acquire attempts from ExAcquireResourceSharedLite. |
189 | Exec. Resource Attempts AcqShrdStarveExcl/sec |
Exec. Resource Attempts AcqShrdStarveExcl/sec |
191 | ExAcquireSharedStarveExclusive에서 실행 리소스에 대한 공유 획득 시도의 빈도입니다. |
Frequency of acquire shared attempts on Executive Resources from ExAcquireSharedStarveExclusive. |
193 | Exec. Resource Recursive Excl. Acquires AcqShrdStarveExcl/sec |
Exec. Resource Recursive Excl. Acquires AcqShrdStarveExcl/sec |
195 | ExAcquireSharedStarveExclusive에서 재귀 배타적 획득의 빈도입니다. |
Frequency of recursive exclusive acquires from ExAcquireSharedStarveExclusive. |
197 | Exec. Resource Acquires AcqShrdStarveExcl/sec |
Exec. Resource Acquires AcqShrdStarveExcl/sec |
199 | ExAcquireSharedStarveExclusive에서 첫 번째 공유 획득의 빈도입니다. |
Frequency of first shared acquires from ExAcquireSharedStarveExclusive. |
201 | Exec. Resource Recursive Sh. Acquires AcqShrdStarveExcl/sec |
Exec. Resource Recursive Sh. Acquires AcqShrdStarveExcl/sec |
203 | ExAcquireSharedStarveExclusive에서 재귀 공유 획득의 빈도입니다. |
Frequency of recursive shared acquires from ExAcquireSharedStarveExclusive. |
205 | Exec. Resource Contention AcqShrdStarveExcl/sec |
Exec. Resource Contention AcqShrdStarveExcl/sec |
207 | ExAcquireSharedStarveExclusive에서 공유 획득 시도 중의 대기 빈도입니다. |
Frequency of waits during shared acquire attempts from ExAcquireSharedStarveExclusive. |
209 | Exec. Resource no-Waits AcqShrdStarveExcl/sec |
Exec. Resource no-Waits AcqShrdStarveExcl/sec |
211 | ExAcquireSharedStarveExclusive에서 공유 획득 시도 중의 비대기 빈도입니다. |
Frequency of no-waits during shared acquire attempts from ExAcquireSharedStarveExclusive. |
213 | Exec. Resource Attempts AcqShrdWaitForExcl/sec |
Exec. Resource Attempts AcqShrdWaitForExcl/sec |
215 | ExAcquireSharedWaitForExclusive에서 실행 리소스에 대한 공유 획득 시도의 빈도입니다. |
Frequency of acquire shared attempts on Executive Resources from ExAcquireSharedWaitForExclusive. |
217 | Exec. Resource Recursive Excl. Acquires AcqShrdWaitForExcl/sec |
Exec. Resource Recursive Excl. Acquires AcqShrdWaitForExcl/sec |
219 | ExAcquireSharedWaitForExclusive에서 재귀 배타적 획득의 빈도입니다. |
Frequency of recursive exclusive acquires from ExAcquireSharedWaitForExclusive. |
221 | Exec. Resource Acquires AcqShrdWaitForExcl/sec |
Exec. Resource Acquires AcqShrdWaitForExcl/sec |
223 | ExAcquireSharedWaitForExclusive에서 첫 번째 공유 획득의 빈도입니다. |
Frequency of first shared acquires from ExAcquireSharedWaitForExclusive. |
225 | Exec. Resource Recursive Sh. Acquires AcqShrdWaitForExcl/sec |
Exec. Resource Recursive Sh. Acquires AcqShrdWaitForExcl/sec |
227 | ExAcquireSharedWaitForExclusive에서 재귀 공유 획득의 빈도입니다. |
Frequency of recursive shared acquires from ExAcquireSharedWaitForExclusive. |
229 | Exec. Resource Contention AcqShrdWaitForExcl/sec |
Exec. Resource Contention AcqShrdWaitForExcl/sec |
231 | ExAcquireSharedWaitForExclusive에서 공유 획득 시도 중의 대기 빈도입니다. |
Frequency of waits during shared acquire attempts from ExAcquireSharedWaitForExclusive. |
233 | Exec. Resource no-Waits AcqShrdWaitForExcl/sec |
Exec. Resource no-Waits AcqShrdWaitForExcl/sec |
235 | ExAcquireSharedWaitForExclusive에서 배타적 획득 시도 중의 비대기 빈도입니다. |
Frequency of no-waits during exclusive acquire attempts from ExAcquireSharedWaitForExclusive. |
237 | Exec. Resource Set Owner Pointer Exclusive/sec |
Exec. Resource Set Owner Pointer Exclusive/sec |
239 | 배타적 소유자에 대한 ExSetResourceOwnerPointer의 빈도입니다. |
Frequency of ExSetResourceOwnerPointer to an exclusive owner. |
241 | Exec. Resource Set Owner Pointer Shared (New Owner)/sec |
Exec. Resource Set Owner Pointer Shared (New Owner)/sec |
243 | 새 공유 소유자에 대한 ExSetResourceOwnerPointer의 빈도입니다. |
Frequency of ExSetResourceOwnerPointer to a new shared owner. |
245 | Exec. Resource Set Owner Pointer Shared (Existing Owner)/sec |
Exec. Resource Set Owner Pointer Shared (Existing Owner)/sec |
247 | 기존 공유 소유자에 대한 ExSetResourceOwnerPointer의 빈도입니다. |
Frequency of ExSetResourceOwnerPointer to an existing shared owner. |
249 | Exec. Resource Boost Excl. Owner/sec |
Exec. Resource Boost Excl. Owner/sec |
251 | 이 실행 리소스를 대기할 때의 배타적 소유자 상승의 빈도입니다. |
Frequency of boosting exclusive ownwer when waiting for this Executive Resource. |
253 | Exec. Resource Boost Shared Owners/sec |
Exec. Resource Boost Shared Owners/sec |
255 | 이 실행 리소스를 대기할 때의 공유 소유자 상승의 빈도입니다. |
Frequency of boosting shared ownwer(s) when waiting for this Executive Resource. |
257 | Event Tracing for Windows |
Event Tracing for Windows |
259 | 이 컬렉션의 카운터는 Windows 이벤트 추적 하위 시스템의 성능에 대한 전체 시스템의 메트릭을 참조합니다. |
The counters in this collection refer to system-wide metrics about the performance of the Event Tracing for Windows subsystem. |
261 | Total Number of Distinct Enabled Providers |
Total Number of Distinct Enabled Providers |
263 | ETW 세션에 대해 사용하도록 설정된 고유 이벤트 공급자의 수로서 공급자 하나에 대해 여러 인스턴스가 있더라도 하나로만 계산됩니다. |
Number of distinct event providers that are enabled to ETW sessions; multiple instances of a provider are counted only once. |
265 | Total Number of Distinct Pre-Enabled Providers |
Total Number of Distinct Pre-Enabled Providers |
267 | 추적 세션에 대해 사용하도록 설정되었지만 아직 ETW를 사용하여 등록되지 않은 고유 추적 공급자의 수입니다. |
Number of unique tracing providers that have been enabled to a trace session but have not yet registered with ETW. |
269 | Total Number of Distinct Disabled Providers |
Total Number of Distinct Disabled Providers |
271 | 추적 하위 시스템에 등록되었지만 아직 어떠한 추적 세션에도 활성화되지 않은 고유 추적 공급자의 수이며, 공급자 하나에 대해 등록된 인스턴스가 여러 개 있더라도 하나로만 계산됩니다. |
Number of unique tracing providers that are registered with the tracing subsystem but are not actively enabled to any trace session; multiple registered instances of a provider are counted only once. |
273 | Total Number of Active Sessions |
Total Number of Active Sessions |
275 | 현재 활성화된 ETW 추적 세션의 수입니다. |
Number of ETW tracing sessions currently active. |
277 | Total Memory Usage --- Paged Pool |
Total Memory Usage --- Paged Pool |
279 | 모든 활성 세션과 연결된 버퍼에 할당되어 있는 페이징된 메모리의 현재 크기(바이트)입니다. |
Current size of paged memory allocated for the buffers associated with all active sessions (in bytes). |
281 | Total Memory Usage --- Non-Paged Pool |
Total Memory Usage --- Non-Paged Pool |
283 | 모든 활성 세션과 연결된 버퍼에 할당되어 있는 페이징되지 않은 메모리의 현재 크기(바이트)입니다. |
Current size of non-paged memory allocated for the buffers associated with all active sessions (in bytes). |
285 | Event Tracing for Windows Session |
Event Tracing for Windows Session |
287 | 이 컬렉션의 카운터는 개별 Windows용 이벤트 추적 세션과 연결되어 있습니다. |
The counters in this collection are related to individual Event Tracing for Windows sessions. |
289 | Buffer Memory Usage -- Paged Pool |
Buffer Memory Usage -- Paged Pool |
291 | 이 세션과 연결된 버퍼에 할당되어 있는 페이징된 메모리의 현재 크기(바이트)입니다. |
Current size of paged memory allocated for the buffers associated with this session (in bytes). |
293 | Buffer Memory Usage -- Non-Paged Pool |
Buffer Memory Usage -- Non-Paged Pool |
295 | 이 세션과 연결된 버퍼에 할당되어 있는 페이징되지 않은 메모리의 현재 크기(바이트)입니다. |
Current size of non-paged memory allocated for the buffers associated with this session (in bytes). |
297 | Events Logged per sec |
Events Logged per sec |
299 | 이 세션에 대해 사용하도록 설정되어 있는 공급자에 의해 이 세션에 이벤트가 로깅되는 속도(이벤트/초)입니다. |
Rate at which events are logged to this session by providers that are enabled to this session (events/sec). |
301 | Events Lost |
Events Lost |
303 | 추적 세션 시작 이후에 로깅되지 않은 이벤트의 총 수입니다. 세션 버퍼의 공간 제한으로 인해 이벤트가 손실됩니다. 이벤트가 손실되지 않도록 하려면 버퍼 크기를 늘리거나 버퍼 수를 늘리십시오. |
Total number of events that were not successfully logged since the start of the tracing session. Events are lost due to limited space in the session's buffers. To avoid lost events, consider increasing the buffer size or the number of buffers. |
305 | Number of Real-Time Consumers |
Number of Real-Time Consumers |
307 | 이 세션에서 실시간 모드로 이벤트를 읽고 있는 소비자의 수입니다. |
Number of consumers currently reading events from this session in real-time mode. |
309 | SynchronizationNuma |
SynchronizationNuma |
311 | Synchronization 성능 개체는 커널 동기화에 대한 카운터로 구성됩니다. 동기화 개체는 각 프로세서를 해당 개체의 인스턴스로 나타냅니다. 카운터는 시스템 NUMA 토폴로지를 기반으로 집계됩니다. |
The Synchronization performance object consists of counters for kernel synchronization. The synchronization object represents each processor as an instance of the object. The counters are aggregated based on the system NUMA topology. |
315 | Spinlock acquires/sec은 스핀 잠금 획득 비율입니다. 여기에는 기본 스핀 잠금, 대기 중인 스핀 잠금, 스택에 대기 중인 스핀 잠금 및 공유 스핀 잠금 획득이 포함됩니다. |
Spinlock acquires/sec is the rate of spinlock acquisitions. It includes the basic spinlocks, queued spinlocks, in-stack queued spinlocks, and shared spinlocks acquisitions. |
319 | Spinlock contentions/sec은 스핀 잠금 경합 비율입니다. 여기에는 기본 스핀 잠금, 대기 중인 스핀 잠금, 스택에 있는 대기 중인 스핀 잠금 및 공유 스핀 잠금 경합이 포함됩니다. |
Spinlock contentions/sec is the rate of spinlock contentions. It includes the basic spinlocks, queued spinlocks, in-stack queued spinlocks, and shared spinlocks contentions. |
323 | Spinlock spins/sec은 스핀 잠금 회전 비율입니다. 여기에는 기본 스핀 잠금, 대기 중인 스핀 잠금, 스택에 있는 대기 중인 스핀 잠금 및 공유 스핀 잠금을 획득하기 위한 회전이 포함됩니다. |
Spinlock spins/sec is the rate of spinlock spins. It includes the spins to acquire basic spinlocks, queued spinlocks, in-stack queued spinlocks, and shared spinlocks. |
327 | IPI Send Broadcast Requests/sec은 IPI 브로드캐스트 요청의 비율입니다. |
IPI Send Broadcast Requests/sec is the rate of IPI broadcast requests. |
331 | IPI Send Routine Requests/sec은 IPI 루틴 요청의 비율입니다. |
IPI Send Routine Requests/sec is the rate of IPI routine requests. |
335 | IPI Send Software Interrrupts/sec은 소프트웨어 인터럽트의 비율입니다. |
IPI Send Software Interrrupts/sec is the rate of software interrupts. |
481 | 파일 시스템 디스크 활동 성능 카운터 집합은 파일 시스템의 IO 활동 측면을 측정하는 카운터로 구성되어 있습니다. 이 카운터 집합은 파일 시스템이 디스크 드라이브에서 읽고 쓴 바이트 수를 측정합니다. |
The FileSystem Disk Activity performance counter set consists of counters that measure the aspect of filesystem's IO Activity. This counter set measures the number of bytes filesystem read from and wrote to the disk drive. |
483 | FileSystem Disk Activity |
FileSystem Disk Activity |
485 | 파일 시스템이 디스크 드라이브에서 읽은 총 바이트 수 |
Total Bytes Read by the FileSystem from disk drive |
487 | FileSystem Bytes Read |
FileSystem Bytes Read |
489 | 파일 시스템이 디스크 드라이브에 쓴 총 바이트 수 |
Total Bytes Written by the FileSystem from disk drive |
491 | FileSystem Bytes Written |
FileSystem Bytes Written |
501 | Thermal Zone Information 성능 카운터 집합은 시스템에서 각 열 영역의 측면을 측정하는 카운터로 구성되어 있습니다. |
The Thermal Zone Information performance counter set consists of counters that measure aspects of each thermal zone in the system. |
503 | Thermal Zone Information |
Thermal Zone Information |
505 | 절대 온도 단위로 표시되는 열 영역의 온도입니다. |
Temperature of the thermal zone, in degrees Kelvin. |
507 | Temperature |
Temperature |
509 | % Passive Limit는 이 열 영역이 제어하는 장치에 지정하고 있는 현재 한도입니다. 한도 100%는 장치가 제한되지 않음을 나타냅니다. 한도 0%는 장치가 완전히 제한됨을 나타냅니다. |
% Passive Limit is the current limit this thermal zone is placing on the devices it controls. A limit of 100% indicates the devices are unconstrained. A limit of 0% indicates the devices are fully constrained. |
511 | % Passive Limit |
% Passive Limit |
513 | Throttle Reasons는 열 영역이 제어하는 장치의 성능을 제한하고 있는 이유를 나타냅니다. |
Throttle Reasons indicate reasons why the thermal zone is limiting performance of the devices it controls. |
515 | Throttle Reasons |
Throttle Reasons |
517 | 열 영역의 온도(단위: 절대 온도의 1/10)입니다. |
Temperature of the thermal zone, in tenths of degrees Kelvin. |
519 | 고정밀도 온도 |
High Precision Temperature |
520 | High Precision Temperature |
High Precision Temperature |
777 | Clock Interrupts/sec은 인시던트에서 프로세서가 클록 틱 인터럽트를 수신하고 서비스하는 초당 평균 비율입니다. 이 카운터는 마지막 샘플 두 개를 샘플 간격 기간으로 나눈 값의 차이를 표시합니다. |
Clock Interrupts/sec is the average rate, in incidents per second, at which the processor received and serviced clock tick interrupts. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval. |
779 | 평균 유휴 시간은 마지막 샘플 두 개에서 관찰한 평균 유휴 기간입니다(100ns 단위). |
Average Idle Time is the average idle duration in 100ns units observed between the last two samples. |
781 | Idle Break Events/sec은 인시던트에서 프로세서 유휴 상태가 해제되는 초당 평균 비율입니다. 이 카운터는 마지막 샘플 두 개에서 관찰한 값을 샘플 간격 기간으로 나눈 값의 차이를 표시합니다. |
Idle Break Events/sec is the average rate, in incidents per second, at which the processor wakes from idle. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval. |
783 | Processor Performance는 프로세서의 명령 실행 평균 성능으로, 프로세서의 명목 성능 대비 백분율로 나타냅니다. 일부 프로세서의 경우 Processor Performance가 100%를 초과할 수 있습니다. 일부 프로세서는 Windows의 제어를 받지 않고 주파수를 규제할 수 있습니다. Processor Performance는 이러한 시스템에서 실제 프로세서 주파수를 정확하게 반영하지 않습니다. |
Processor Performance is the average performance of the processor while it is executing instructions, as a percentage of the nominal performance of the processor. On some processors, Processor Performance may exceed 100%. Some processors are capable of regulating their frequency outside of the control of Windows. Processor Performance will accurately reflect the performance of these processors. |
785 | Processor Utility는 프로세서가 완료하는 작업량으로, 프로세서가 명목 성능으로 실행되며 유휴 상태가 되지 않는 경우 완료할 수 있는 작업량 대비 백분율로 나타냅니다. 일부 프로세서의 경우 Processor Utility가 100%를 초과할 수 있습니다. |
Processor Utility is the amount of work a processor is completing, as a percentage of the amount of work the processor could complete if it were running at its nominal performance and never idle. On some processors, Processor Utility may exceed 100%. |
787 | Privileged Utility는 특권 모드에서 실행할 때 프로세서가 완료하는 작업량으로, 프로세서가 명목 성능으로 실행되며 유휴 상태가 되지 않는 경우 완료할 수 있는 작업량 대비 백분율로 나타냅니다. 일부 프로세서의 경우 Privileged Utility가 100%를 초과할 수 있습니다. |
Privileged Utility is the amount of work a processor is completing while executing in privileged mode, as a percentage of the amount of work the processor could complete if it were running at its nominal performance and never idle. On some processors, Privileged Utility may exceed 100%. |
789 | 성능 제한 비율(%)은 프로세서가 제공할 수 있다고 보장하는 성능을 프로세서의 명목 성능 비율로 나타낸 것입니다. 성능은 Windows 전원 정책이나 전원 할당량, 과열 또는 기타 하드웨어 문제의 결과로 플랫폼에 의해 제한될 수 있습니다. |
% Performance Limit is the performance the processor guarantees it can provide, as a percentage of the nominal performance of the processor. Performance can be limited by Windows power policy, or by the platform as a result of a power budget, overheating, or other hardware issues. |
791 | 성능 제한 플래그는 프로세서 성능이 제한된 이유를 나타냅니다. |
Performance Limit Flags indicate reasons why the processor performance was limited. |
999 | Clock Interrupts/sec |
Clock Interrupts/sec |
1001 | Average Idle Time |
Average Idle Time |
1003 | Idle Break Events/sec |
Idle Break Events/sec |
1005 | % Processor Performance |
% Processor Performance |
1007 | % Processor Utility |
% Processor Utility |
1009 | % Privileged Utility |
% Privileged Utility |
1011 | % Performance Limit |
% Performance Limit |
1013 | Performance Limit Flags |
Performance Limit Flags |