OBJECT

NearRealTimeDataSSNetworkInfo

The kernel-level network performance information for the TCP connection.

link GraphQL Schema definition

  • type NearRealTimeDataSSNetworkInfo {
  • # The congestion algorithm.
  • cong_alg: String
  • # The TCP re-transmission timeout, in milliseconds
  • rto: Int
  • # The average round trip time, in milliseconds.
  • rtt: Float
  • # The mean deviation of the round trip time, in milliseconds.
  • rttvar: Float
  • # The maximum segment size, in bytes.
  • mss: Int
  • # The receiver maximum segment size, in bytes.
  • rcvmss: Int
  • # The advertised maximum segment size, in bytes.
  • advmss: Int
  • # The congestion window size, in bytes.
  • cwnd: Int
  • # The total number of bytes sent and acknowledged.
  • bytes_acked: Long
  • # The total number of bytes received.
  • bytes_received: Long
  • # The send rate, in bytes-per-second.
  • send_bps: Long
  • # The pacing rate.
  • pacing_rate: Long
  • # The maximum pacing rate.
  • pacing_rate_max: Long
  • delivery_rate: Long
  • retrans: Int
  • retrans_total: Int
  • lost: Int
  • # The total number of bytes that are waiting to be sent.
  • not_sent: Int
  • # The minimum round trip time, in milliseconds.
  • min_rtt: Float
  • # The estimated write bandwidth, in bytes-per-second.
  • bbr_bw: Int
  • # The minimum round trip time, in milliseconds.
  • bbr_min_rtt: Float
  • bbr_pacing_gain: Float
  • bbr_cwnd_gain: Float
  • }