OBJECT

NearRealTimeData

The most recent instance of near real-time metrics related to an encoder and its associated broadcast. Data is collected every 10 seconds while a broadcast is active.

link GraphQL Schema definition

  • type NearRealTimeData {
  • # The date and time at which the data was requested.
  • timestamp: String
  • # The event ID. The ID is incremented each time data is collected by the encoder.
  • eventId: Int
  • # The event type.
  • eventType: String
  • # The date and time, in UTC, at which the data was collected.
  • eventTime: String
  • # The encoder hardware serial number.
  • serial: String
  • # The encoder software version.
  • clearcasterVersion: String
  • # The encoder status. Valid values: CREATE, IDLE, PREVIEW, LIVE, STOPPED,
  • # DISCONNECTED
  • encoderState: String
  • # The source of the event data.
  • source: String
  • # The broadcast session information.
  • sessionInfo: NearRealTimeDataSessionInfo
  • # The encoder hardware information.
  • hardwareDynamic: NearRealTimeDataHardwareDynamic
  • # The stream target information.
  • streamTargets: [NearRealTimeDataStreamTarget]
  • # The capture and output information.
  • encoder: NearRealTimeDataEncoder
  • }