mirror of
https://github.com/IceWhaleTech/CasaOS.git
synced 2025-11-06 22:59:44 +00:00
19 lines
1.1 KiB
Go
19 lines
1.1 KiB
Go
package model
|
||
|
||
type IOCountersStat struct {
|
||
// @tiger - 应该统一用 snake_case,不是 snakeCase
|
||
Name string `json:"name"` // interface name
|
||
BytesSent uint64 `json:"bytesSent"` // number of bytes sent
|
||
BytesRecv uint64 `json:"bytesRecv"` // number of bytes received
|
||
PacketsSent uint64 `json:"packetsSent"` // number of packets sent
|
||
PacketsRecv uint64 `json:"packetsRecv"` // number of packets received
|
||
Errin uint64 `json:"errin"` // total number of errors while receiving
|
||
Errout uint64 `json:"errout"` // total number of errors while sending
|
||
Dropin uint64 `json:"dropin"` // total number of incoming packets which were dropped
|
||
Dropout uint64 `json:"dropout"` // total number of outgoing packets which were dropped (always 0 on OSX and BSD)
|
||
Fifoin uint64 `json:"fifoin"` // total number of FIFO buffers errors while receiving
|
||
Fifoout uint64 `json:"fifoout"` // total number of FIFO buffers errors while sending
|
||
State string `json:"state"`
|
||
Time int64 `json:"time"`
|
||
}
|