List all events
Beta: List lineage events. Supports filtering by time range, run, state, namespace, job, and integrations. Results can be paginated and sorted.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Start timestamp (UNIX epoch). Only events with event_time >= this value are returned.
1672531200
End timestamp (UNIX epoch). Only events with event_time < this value are returned.
1672617600
Field by which results should be sorted. Defaults to EVENT_TIME.
EVENT_TIME
, EVENT_SIZE_IN_BYTES
Sort order. Defaults to DESC.
ASC
, DESC
Filter by run_id (UUID). Only events matching this run_id are returned.
"550e8400-e29b-41d4-a716-446655440000"
Comma-separated list of run states to filter by. E.g. 'START,RUNNING,COMPLETE'.
START
, RUNNING
, COMPLETE
, ABORT
, FAIL
, OTHER
Filter by job namespace, partial matches included.
"my-scheduler-namespace"
Filter by job name, partial matches included.
"myjob.mytask"
Comma-separated list of integration names to filter by.
"airflow,dbt"
Number of results to return. Defaults to 30.
50
Offset for pagination. Defaults to 0.
100
Response
START
, RUNNING
, COMPLETE
, ABORT
, FAIL
, OTHER
Timestamp with offset, e.g. '2023-07-14T12:34:56Z'.
Event occurrence time (with offset).
Size of the raw event payload in bytes.
A RunEvent is an event that describes the lifecycle of a run.
Optional parent run ID.
Optional parent job namespace.
Optional parent job name.
List of input datasets.
List of output datasets.
Was this page helpful?