-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Add Channel Archive Heartbeat event #15885
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -749,6 +749,9 @@ | |
| } | ||
| }, | ||
| "type": "object", | ||
| "required": [ | ||
| "bitrate" | ||
| ], | ||
| "description": "Encoder connect event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventIncomingStreamReceived event." | ||
| }, | ||
| "MediaLiveEventIncomingStreamsOutOfSyncEventData": { | ||
|
|
@@ -816,7 +819,7 @@ | |
| } | ||
| }, | ||
| "type": "object", | ||
| "description": "Incoming video stream out of synch event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventIncomingVideoStreamsOutOfSync event." | ||
| "description": "Incoming video stream out of sync event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventIncomingVideoStreamsOutOfSync event." | ||
| }, | ||
| "MediaLiveEventIncomingDataChunkDroppedEventData": { | ||
| "properties": { | ||
|
|
@@ -853,6 +856,9 @@ | |
| } | ||
| }, | ||
| "type": "object", | ||
| "required": [ | ||
| "bitrate" | ||
| ], | ||
| "description": "Ingest fragment dropped event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventIncomingDataChunkDropped event." | ||
| }, | ||
| "MediaLiveEventIngestHeartbeatEventData": { | ||
|
|
@@ -867,6 +873,16 @@ | |
| "description": "Gets the track name.", | ||
| "readOnly": true | ||
| }, | ||
| "transcriptionLanguage": { | ||
| "description": "Gets the Live Transcription language.", | ||
| "readOnly": true, | ||
| "type": "string" | ||
| }, | ||
| "transcriptionState": { | ||
| "description": "Gets the Live Transcription state.", | ||
| "readOnly": true, | ||
| "type": "string" | ||
| }, | ||
| "bitrate": { | ||
| "type": "integer", | ||
| "format": "int64", | ||
|
|
@@ -879,6 +895,16 @@ | |
| "description": "Gets the incoming bitrate.", | ||
| "readOnly": true | ||
| }, | ||
| "ingestDriftValue": { | ||
| "description": "Gets the track ingest drift value.", | ||
| "readOnly": true, | ||
| "type": "string" | ||
| }, | ||
| "lastFragmentArrivalTime": { | ||
| "description": "Gets the arrival UTC time of the last fragment.", | ||
| "readOnly": true, | ||
| "type": "string" | ||
| }, | ||
| "lastTimestamp": { | ||
| "type": "string", | ||
| "description": "Gets the last timestamp.", | ||
|
|
@@ -924,7 +950,16 @@ | |
| } | ||
| }, | ||
| "type": "object", | ||
| "description": "Ingest fragment dropped event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventIngestHeartbeat event." | ||
| "required": [ | ||
| "bitrate", | ||
| "incomingBitrate", | ||
| "overlapCount", | ||
| "discontinuityCount", | ||
| "nonincreasingCount", | ||
| "unexpectedBitrate", | ||
| "healthy" | ||
| ], | ||
| "description": "Ingest heartbeat event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventIngestHeartbeatEventData event." | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Need some clarity here -
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Event name should not have changed. Seems like a documentation error. @xuepingd is driving the PR right now. She can correct this |
||
| }, | ||
| "MediaLiveEventTrackDiscontinuityDetectedEventData": { | ||
| "properties": { | ||
|
|
@@ -966,7 +1001,30 @@ | |
| } | ||
| }, | ||
| "type": "object", | ||
| "required": [ | ||
| "bitrate" | ||
| ], | ||
| "description": "Ingest track discontinuity detected event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventTrackDiscontinuityDetected event." | ||
| }, | ||
| "MediaLiveEventChannelArchiveHeartbeatEventData": { | ||
| "properties": { | ||
| "channelLatencyMs": { | ||
| "type": "string", | ||
| "description": "Gets the channel latency in ms.", | ||
| "readOnly": true | ||
| }, | ||
| "latencyResultCode": { | ||
| "type": "string", | ||
| "description": "Gets the latency result code.", | ||
| "readOnly": true | ||
| } | ||
| }, | ||
| "type": "object", | ||
| "required": [ | ||
| "channelLatencyMs", | ||
| "latencyResultCode" | ||
| ], | ||
| "description": "Channel Archive heartbeat event data. Schema of the data property of an EventGridEvent for a Microsoft.Media.LiveEventChannelArchiveHeartbeatEventData event." | ||
| } | ||
| } | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.