live_events_get_track_ingest_heartbeats
Creates, updates, deletes, gets or lists a live_events_get_track_ingest_heartbeats
resource.
Overview
Name | live_events_get_track_ingest_heartbeats |
Type | Resource |
Id | azure.media_services.live_events_get_track_ingest_heartbeats |
Fields
The following fields are returned by SELECT
queries:
- list
OK. The request has succeeded.
Name | Datatype | Description |
---|---|---|
data | object | Event data. |
eventTime | string (date-time) | The time event raised. |
eventType | string | The type of the track event. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , accountName , liveEventName | api-version | Get 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.
Name | Datatype | Description |
---|---|---|
accountName | string | The Media Services account name. |
liveEventName | string | The name of the live event, maximum length is 32. |
resourceGroupName | string | The name of the resource group within the Azure subscription. |
subscriptionId | string | The unique identifier for a Microsoft Azure subscription. |
api-version | string | The version of the API to be used with the client request. |
SELECT
examples
- list
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 }}'
;