Product

Import guide

Bring existing dbt, Airflow, or Postgres assets into the catalog without rewriting.

Stale table demo

Fastest path: open Get started in the app and run the stale-table demo.

See the classic silent failure scenario — orchestrator green, mart table stale — with lineage and freshness checks.

dbt manifest

Paste manifest.json in Get started or POST to /api/v1/import/dbt-manifest with { manifest, register: true }.

Models become targets; depends_on edges become lineage. Default freshness checks are added to critical tables.

Airflow DAG

POST /api/v1/import/airflow-dag with your DAG Python source and register: true.

Import creates catalog metadata. To record runs, wire your DAG to POST lifecycle events — see the Airflow guide.

Postgres discovery

POST /api/v1/import/discover/postgres with host, database, credentials, and optional schema.

Discovers tables and suggests freshness checks — useful for bootstrapping a new catalog.

YAML spec

For greenfield pipelines, upload YAML in the app or POST /api/v1/specs/register.

Registration stores metadata; connect your orchestrator to execute and report runs.