Skip to main content

live_events_get_status

Creates, updates, deletes, gets or lists a live_events_get_status resource.

Overview

Namelive_events_get_status
TypeResource
Idazure.media_services.live_events_get_status

Fields

NameDatatypeDescription
healthDescriptionsarrayList of strings justifying the health status.
healthStatusstringHealth status of last 20 seconds.
ingestionobjectThe live event ingestion telemetry data.
lastUpdatedTimestringLast updated UTC time of this status.
statestringCurrent state of the live event. See https://go.microsoft.com/fwlink/?linkid=2139012 for more information.
trackStatusarrayTrack entry list.

Methods

NameAccessible byRequired ParamsDescription
listSELECTaccountName, liveEventName, resourceGroupName, subscriptionIdGets 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 }}';