Skip to main content

vw_workflow_trigger_histories

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

Overview

Namevw_workflow_trigger_histories
TypeView
Idazure.logic_apps.vw_workflow_trigger_histories

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

SELECT
id as id,
name as name,
type as type,
JSON_EXTRACT(properties, '$.startTime') as "start_time",
JSON_EXTRACT(properties, '$.endTime') as "end_time",
JSON_EXTRACT(properties, '$.scheduledTime') as "scheduled_time",
JSON_EXTRACT(properties, '$.status') as "status",
JSON_EXTRACT(properties, '$.code') as "code",
JSON_EXTRACT(properties, '$.error') as "error",
JSON_EXTRACT(properties, '$.trackingId') as "tracking_id",
JSON_EXTRACT(properties, '$.correlation') as "correlation",
JSON_EXTRACT(properties, '$.inputsLink') as "inputs_link",
JSON_EXTRACT(properties, '$.outputsLink') as "outputs_link",
JSON_EXTRACT(properties, '$.fired') as "fired",
JSON_EXTRACT(properties, '$.run') as "run",
subscriptionId,
resourceGroupName,
workflowName,
triggerName,
historyName
FROM azure.logic_apps.workflow_trigger_histories
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workflowName = 'replace-me' AND triggerName = 'replace-me';