mirror of
https://github.com/prometheus-community/windows_exporter.git
synced 2026-02-08 05:56:37 +00:00
29 lines
1.1 KiB
Go
29 lines
1.1 KiB
Go
package cpu
|
|
|
|
// Processor performance counters.
|
|
const (
|
|
C1TimeSeconds = "% C1 Time"
|
|
C2TimeSeconds = "% C2 Time"
|
|
C3TimeSeconds = "% C3 Time"
|
|
C1TransitionsTotal = "C1 Transitions/sec"
|
|
C2TransitionsTotal = "C2 Transitions/sec"
|
|
C3TransitionsTotal = "C3 Transitions/sec"
|
|
ClockInterruptsTotal = "Clock Interrupts/sec"
|
|
DPCsQueuedTotal = "DPCs Queued/sec"
|
|
DPCTimeSeconds = "% DPC Time"
|
|
IdleBreakEventsTotal = "Idle Break Events/sec"
|
|
IdleTimeSeconds = "% Idle Time"
|
|
InterruptsTotal = "Interrupts/sec"
|
|
InterruptTimeSeconds = "% Interrupt Time"
|
|
ParkingStatus = "Parking Status"
|
|
PerformanceLimitPercent = "% Performance Limit"
|
|
PriorityTimeSeconds = "% Priority Time"
|
|
PrivilegedTimeSeconds = "% Privileged Time"
|
|
PrivilegedUtilitySeconds = "% Privileged Utility"
|
|
ProcessorFrequencyMHz = "Processor Frequency"
|
|
ProcessorPerformance = "% Processor Performance"
|
|
ProcessorTimeSeconds = "% Processor Time"
|
|
ProcessorUtilityRate = "% Processor Utility"
|
|
UserTimeSeconds = "% User Time"
|
|
)
|