ENUM

IngestStreamHealthStatus

Health of the stream to inform the broadcaster.

link GraphQL Schema definition

1enum IngestStreamHealthStatus {
2
3# A misspelling of UNKNOWN.
4UNKNWON@deprecated( reason: "Use UNKNOWN instead" )
5
6# The stream is ingested okay.
7OK
8
9# The stream is at warning level.
10WARN
11
12# The stream is unstable.
13UNSTABLE
14
15# Health Status not set.
16UNKNOWN
17}