OBJECT

NearRealTimeDataStreamTarget

The stream target information.

link GraphQL Schema definition

  • type NearRealTimeDataStreamTarget {
  • # The stream target ID.
  • id: String
  • # The broadcast output ID.
  • outputId: String
  • # The destination URL.
  • url: String
  • # The timecode of the last connection attempt, in seconds since EPOCH.
  • pushpubConnectLastAttempt: Long
  • # The number of connection attempts to the destination.
  • pushpubConnectAttemptCount: Int
  • # The timecode of the last successful connection, in seconds since EPOCH.
  • pushpubConnectLastSuccess: Long
  • # The total number of packets sent.
  • pushpubTotalPacketsSent: Long
  • # The timecode of the last video packet sent, in milliseconds.
  • pushpubLastVideoTC: Long
  • # The timecode of the last video keyframe packet sent, in milliseconds.
  • pushpubLastVideoKeyFrameTC: Long
  • # The timecode of the last audio packet sent, in milliseconds.
  • pushpubLastAudioTC: Long
  • # The timecode offset between the internal packet time and outgoing packets, in
  • # milliseconds.
  • pushpubOriginalTimecodeOffset: Long
  • # The number of times a reconnect was forced by an internal API.
  • forceReconnectCount: Int
  • # The total number of bytes waiting to be sent.
  • ioSessionScheduledWriteBytes: Int
  • # The total number of occasions on which the number of waiting bytes dropped to
  • # zero.
  • ioSessionScheduledWriteBytesToZero: Int
  • # The total number of bytes written.
  • ioSessionWrittenBytes: Long
  • # The ping time, in milliseconds, to the destination.
  • pingTime: Int
  • # The kernel-level network performance information for the TCP connection.
  • ssNetworkInfo: NearRealTimeDataSSNetworkInfo
  • # The low-level network performance information for an SRT connection.
  • srtNetworkInfo: NearRealTimeDataSRTNetworkInfo
  • }