1
0
mirror of https://github.com/prometheus-community/windows_exporter.git synced 2025-04-18 19:24:05 +03:00
Jan-Otto Kröpke e6a15d4ec4
chore: Remove registry based perfdata collector (#1742)
Signed-off-by: Jan-Otto Kröpke <mail@jkroepke.de>
2024-11-17 21:51:12 +01:00

20 lines
698 B
Go

//go:build windows
package net
const (
bytesReceivedPerSec = "Bytes Received/sec"
bytesSentPerSec = "Bytes Sent/sec"
bytesTotalPerSec = "Bytes Total/sec"
currentBandwidth = "Current Bandwidth"
outputQueueLength = "Output Queue Length"
packetsOutboundDiscarded = "Packets Outbound Discarded"
packetsOutboundErrors = "Packets Outbound Errors"
packetsPerSec = "Packets/sec"
packetsReceivedDiscarded = "Packets Received Discarded"
packetsReceivedErrors = "Packets Received Errors"
packetsReceivedPerSec = "Packets Received/sec"
packetsReceivedUnknown = "Packets Received Unknown"
packetsSentPerSec = "Packets Sent/sec"
)