Skip to main content

pipeline_events

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

Overview

Namepipeline_events
TypeResource
Iddatabricks_workspace.deltalivetables.pipeline_events

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstring
errorobject
event_typestring
levelstring
maturity_levelstring
messagestring
originobject
sequenceobject
timestampstring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listpipelineeventsselectdeployment_nameRetrieves 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.

NameDatatypeDescription
deployment_namestringThe Databricks Workspace Deployment Name (default: dbc-abcd0123-a1bc)

SELECT examples

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;