pipeline_events
Creates, updates, deletes, gets or lists a pipeline_events resource.
Overview
| Name | pipeline_events |
| Type | Resource |
| Id | databricks_workspace.deltalivetables.pipeline_events |
Fields
The following fields are returned by SELECT queries:
- listpipelineevents
| Name | Datatype | Description |
|---|---|---|
id | string | |
error | object | |
event_type | string | |
level | string | |
maturity_level | string | |
message | string | |
origin | object | |
sequence | object | |
timestamp | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
listpipelineevents | select | deployment_name | Retrieves events for a pipeline. |
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 |
|---|---|---|
deployment_name | string | The Databricks Workspace Deployment Name (default: dbc-abcd0123-a1bc) |
SELECT examples
- listpipelineevents
Retrieves events for a pipeline.
SELECT
id,
error,
event_type,
level,
maturity_level,
message,
origin,
sequence,
timestamp
FROM databricks_workspace.deltalivetables.pipeline_events
WHERE deployment_name = '{{ deployment_name }}' -- required;