Skip to main content

live_events_get_track_ingest_heartbeats

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

Overview

Namelive_events_get_track_ingest_heartbeats
TypeResource
Idazure.media_services.live_events_get_track_ingest_heartbeats

Fields

The following fields are returned by SELECT queries:

OK. The request has succeeded.

NameDatatypeDescription
dataobjectEvent data.
eventTimestring (date-time)The time event raised.
eventTypestringThe type of the track event.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, accountName, liveEventNameapi-versionGet track ingest heartbeat events 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

Get track ingest heartbeat events telemetry of a live event.

SELECT
data,
eventTime,
eventType
FROM azure.media_services.live_events_get_track_ingest_heartbeats
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
AND liveEventName = '{{ liveEventName }}' -- required
AND api-version = '{{ api-version }}'
;