stats.go 260 B

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