Skip to main content

pipeline_events

Operations on a pipeline_events resource.

Overview

Namepipeline_events
TypeResource
Iddatabricks_workspace.deltalivetables.pipeline_events

Fields

NameDatatype
idstring
errorobject
event_typestring
levelstring
maturity_levelstring
messagestring
originobject
sequenceobject
timestampstring

Methods

NameAccessible byRequired ParamsDescription
listpipelineeventsSELECTpipeline_id, deployment_nameRetrieves 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 }}';