github.com/zhuohuang-hust/src-cbuild@v0.0.0-20230105071821-c7aab3e7c840/mergeCode/runc/libcontainer/stats.go (about)

     1  package libcontainer
     2  
     3  type NetworkInterface struct {
     4  	// Name is the name of the network interface.
     5  	Name string
     6  
     7  	RxBytes   uint64
     8  	RxPackets uint64
     9  	RxErrors  uint64
    10  	RxDropped uint64
    11  	TxBytes   uint64
    12  	TxPackets uint64
    13  	TxErrors  uint64
    14  	TxDropped uint64
    15  }