OBJECT

EncoderStatus

The encoder status and software version.

link GraphQL Schema definition

  • type EncoderStatus {
  • # The status id.
  • id: ID!
  • # The encoder status.
  • status: ENUM_ENCODERSTATUS
  • # The ID of the currently active broadcast associated with the encoder.
  • broadcastId: String
  • # The date and time at which the status was last updated.
  • updatedAt: DateTime
  • # The encoder hardware serial number.
  • clearCasterSerialNumber: String
  • # The encoder software version.
  • clearCasterSoftwareVersion: String
  • # The encoder hardware version.
  • clearCasterHardwareVersion: String
  • # The custom encoder asset package name.
  • encoderAssetsName: String
  • # The custom encoder asset package vendor.
  • encoderAssetsVendor: String
  • # The custom encoder asset package version.
  • encoderAssetsVersion: String
  • # The active slate name.
  • activeSlateName: String
  • # The list of available slate names.
  • availableSlateNames: [String]
  • # The encoder's local IPv4 address.
  • localIpV4Address: String
  • # The encoder's local IPv5 address.
  • localIpV6Address: String
  • # The encoder CPU load.
  • cpuLoad: Float
  • # The encoder CPU temperature in celsius.
  • cpuTemperature: Float
  • # The encoder total physical memory.
  • memoryTotal: Long
  • # The encoder physical memory available.
  • memoryAvailable: Long
  • # The encoder disk1 free bytes.
  • disk1Free: Long
  • # The encoder disk1 total bytes.
  • disk1Total: Long
  • # The ClearCaster software update version or null if no software update is
  • # available.
  • availableSoftwareUpdateVersion: String
  • }