updating Win32_PerfRawData_Tcpip_NetworkInterface to uint64 (#61)

This commit is contained in:
jimliming
2017-03-17 11:12:47 -07:00
committed by Calle Pettersson
parent 8ca60af43a
commit 745f0a6f61

View File

@@ -138,18 +138,18 @@ func mangleNetworkName(name string) string {
} }
type Win32_PerfRawData_Tcpip_NetworkInterface struct { type Win32_PerfRawData_Tcpip_NetworkInterface struct {
BytesReceivedPerSec uint32 BytesReceivedPerSec uint64
BytesSentPerSec uint32 BytesSentPerSec uint64
BytesTotalPerSec uint64 BytesTotalPerSec uint64
Name string Name string
PacketsOutboundDiscarded uint32 PacketsOutboundDiscarded uint64
PacketsOutboundErrors uint32 PacketsOutboundErrors uint64
PacketsPerSec uint32 PacketsPerSec uint64
PacketsReceivedDiscarded uint32 PacketsReceivedDiscarded uint64
PacketsReceivedErrors uint32 PacketsReceivedErrors uint64
PacketsReceivedPerSec uint32 PacketsReceivedPerSec uint64
PacketsReceivedUnknown uint32 PacketsReceivedUnknown uint64
PacketsSentPerSec uint32 PacketsSentPerSec uint64
} }
func (c *NetworkCollector) collect(ch chan<- prometheus.Metric) (*prometheus.Desc, error) { func (c *NetworkCollector) collect(ch chan<- prometheus.Metric) (*prometheus.Desc, error) {