mirror of
https://github.com/prometheus-community/windows_exporter.git
synced 2026-03-05 01:56:35 +00:00
chore: release 0.29.0.rc0 (#1600)
This commit is contained in:
16
pkg/collector/tcp/const.go
Normal file
16
pkg/collector/tcp/const.go
Normal file
@@ -0,0 +1,16 @@
|
||||
package tcp
|
||||
|
||||
// Win32_PerfRawData_Tcpip_TCPv4 docs
|
||||
// - https://msdn.microsoft.com/en-us/library/aa394341(v=vs.85).aspx
|
||||
// The TCPv6 performance object uses the same fields.
|
||||
const (
|
||||
ConnectionFailures = "Connection Failures"
|
||||
ConnectionsActive = "Connections Active"
|
||||
ConnectionsEstablished = "Connections Established"
|
||||
ConnectionsPassive = "Connections Passive"
|
||||
ConnectionsReset = "Connections Reset"
|
||||
SegmentsPersec = "Segments/sec"
|
||||
SegmentsReceivedPersec = "Segments Received/sec"
|
||||
SegmentsRetransmittedPersec = "Segments Retransmitted/sec"
|
||||
SegmentsSentPersec = "Segments Sent/sec"
|
||||
)
|
||||
Reference in New Issue
Block a user