OBJECT

IngestSession

IngestSession is a set of stream metadata related to ingest events.

link GraphQL Schema definition

1type IngestSession {
2
3# Type of live stream.
4broadcastFormat: BroadcastFormat!
5
6# Staff-only field. Hostname for the session where ingest stream was received.
7ingestHost: String
8
9# Name of Ingest Server PoP that received the broadcast. Ex) IAD or PDX.
10ingestProxy: String!
11
12# How many seconds were intentionally delayed in stream as requested by the
13# broadcaster.
14streamDelaySeconds: Int!
15
16# The time when the stream was ended.
17streamDownAt: Time
18
19# The time when the stream was started.
20streamUpAt: Time
21
22}