OBJECT

NearRealTimeDataNetworkInfo

The network interface statistics.

link GraphQL Schema definition

  • type NearRealTimeDataNetworkInfo {
  • # The interface name.
  • name: String
  • # The total sum of bytes received.
  • statsRXBytes: Long
  • # The total number of transmission errors (CRC failures) on the receipt of a
  • # network frame.
  • statsRXErrors: Int
  • # The total number of network frames that were dropped.
  • statsRXDropped: Int
  • # The total sum of bytes transmitted.
  • statsTXBytes: Long
  • # The total number of transmission errors.
  • statsTXErrors: Int
  • # The total number of network frames that never reached the intended destination.
  • statsTXDropped: Int
  • }