live_events_get_status
Creates, updates, deletes, gets or lists a live_events_get_status
resource.
Overview
Name | live_events_get_status |
Type | Resource |
Id | azure.media_services.live_events_get_status |
Fields
Name | Datatype | Description |
---|---|---|
healthDescriptions | array | List of strings justifying the health status. |
healthStatus | string | Health status of last 20 seconds. |
ingestion | object | The live event ingestion telemetry data. |
lastUpdatedTime | string | Last updated UTC time of this status. |
state | string | Current state of the live event. See https://go.microsoft.com/fwlink/?linkid=2139012 for more information. |
trackStatus | array | Track entry list. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | accountName, liveEventName, resourceGroupName, subscriptionId | Gets status telemetry of a live event. |
SELECT
examples
Gets status telemetry of a live event.
SELECT
healthDescriptions,
healthStatus,
ingestion,
lastUpdatedTime,
state,
trackStatus
FROM azure.media_services.live_events_get_status
WHERE accountName = '{{ accountName }}'
AND liveEventName = '{{ liveEventName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';