mirror of
https://github.com/prometheus-community/windows_exporter.git
synced 2026-02-08 05:56:37 +00:00
14 lines
382 B
Go
14 lines
382 B
Go
//go:build windows
|
|
|
|
package system
|
|
|
|
const (
|
|
contextSwitchesPersec = "Context Switches/sec"
|
|
exceptionDispatchesPersec = "Exception Dispatches/sec"
|
|
processorQueueLength = "Processor Queue Length"
|
|
systemCallsPersec = "System Calls/sec"
|
|
systemUpTime = "System Up Time"
|
|
processes = "Processes"
|
|
threads = "Threads"
|
|
)
|