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

The following fields are returned by SELECT queries:

OK. The request has succeeded.

NameDatatypeDescription
healthDescriptionsarrayList of strings justifying the health status.
healthStatusstringHealth status of last 20 seconds.
ingestionobjectLive event ingestion entry.
lastUpdatedTimestring (date-time)Last 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

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, accountName, liveEventNameapi-versionGets status telemetry of a live event.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
accountNamestringThe Media Services account name.
liveEventNamestringThe name of the live event, maximum length is 32.
resourceGroupNamestringThe name of the resource group within the Azure subscription.
subscriptionIdstringThe unique identifier for a Microsoft Azure subscription.
api-versionstringThe version of the API to be used with the client request.

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 subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
AND liveEventName = '{{ liveEventName }}' -- required
AND api-version = '{{ api-version }}'
;