mirror of
https://github.com/prometheus-community/windows_exporter.git
synced 2025-04-18 19:24:05 +03:00
31 lines
1.1 KiB
Go
31 lines
1.1 KiB
Go
//go:build windows
|
|
|
|
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"
|
|
dpcQueuedPerSecond = "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"
|
|
)
|