pipeline_events
Operations on a pipeline_events
resource.
Overview
Name | pipeline_events |
Type | Resource |
Id | databricks_workspace.deltalivetables.pipeline_events |
Fields
Name | Datatype |
---|---|
id | string |
error | object |
event_type | string |
level | string |
maturity_level | string |
message | string |
origin | object |
sequence | object |
timestamp | string |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
listpipelineevents | SELECT | pipeline_id, deployment_name | Retrieves events for a pipeline. |
SELECT
examples
SELECT
id,
error,
event_type,
level,
maturity_level,
message,
origin,
sequence,
timestamp
FROM databricks_workspace.deltalivetables.pipeline_events
WHERE pipeline_id = '{{ pipeline_id }}' AND
deployment_name = '{{ deployment_name }}';