Skip to main content
Version: 1.27.0 (latest) View Markdown

Monitoring and debugging

Use the dltHub CLI and the Web UI at app.dlthub.com to monitor pipeline health, inspect logs, and diagnose failures.

Check workspace status

Retrieve a workspace summary from the CLI:

dlthub workspace info

The command returns the workspace name, job count, latest run status, and the latest deployment and configuration versions. See dlthub workspace info.

View logs

From the CLI

Display logs for the latest run of a job:

dlthub job logs my_pipeline.py

Display logs for a specific run number:

dlthub job logs my_pipeline.py 3

To stream logs in real time while a run is in progress, pass --follow, or supply it directly to dlthub run.

For all options, see dlthub job logs and dlthub job runs logs.

From the Web UI

Select any run on the Jobs page to open its run detail page, which provides:

  • Status bar — status badge, trigger type, profile, start and end timestamps, and elapsed time (live-updating while the run is in progress)
  • Pipeline runs table — every dlt pipeline executed during the job, with row counts and status
  • Log viewer — real-time streaming logs (refreshed each second while the run is active) or static logs once a run has completed

Understand run states

StatusMeaning
PendingRun is queued, waiting to start
StartingRun is being initialized
RunningActively executing
CompletedFinished without errors
FailedEncountered an error — check logs for details
CancelledManually stopped via CLI or Web UI

Diagnose a failed run

  1. Inspect the logs — the log viewer on the run detail page contains the full execution output, including stack traces.
  2. Review the pipeline runs — the pipeline-runs table on the run detail page lists each dlt pipeline executed during the job and its outcome. Open an individual pipeline run for detailed load information (tables loaded, row counts, bytes, duration).
  3. Consult the dashboard — the Dashboard and Pipelines pages surface success-rate trends that help identify recurring issues.
  4. Verify the deployment — the Deployment & Config page indicates the currently deployed code version. Sync the latest changes with dlthub deploy.

Cancel an active run

Cancel the latest active run of a job:

dlthub job runs cancel my_pipeline.py

Cancel a specific run number:

dlthub job runs cancel my_pipeline.py 5

Cancel active runs across multiple matching jobs (for example everything tagged ingest):

dlthub job cancel "tag:ingest"

# preview without cancelling
dlthub job cancel "tag:ingest" --dry-run

See dlthub job runs cancel and dlthub job cancel. Cancellation is also available from the run detail page and the Jobs page context menu.

Monitor pipeline metrics

The Web UI at app.dlthub.com provides built-in dashboards and visualizations of pipeline telemetry, removing the need for an external observability stack. The Pipelines page surfaces aggregated metrics per pipeline:

  • Success rate — percentage of successful runs over time
  • Rows loaded — total data volume trends
  • Duration — performance trends for identifying regressions
  • Charts — time-series visualizations with toggleable views (Runs, Rows, Bytes, Duration)

The Dashboard page provides a workspace-wide overview, summarizing job status and recent run activity.

Known limitations

  • Batch jobs have a configurable maximum runtime. Jobs exceeding this limit are automatically cancelled. See Platform limits for details.

See also

This demo works on codespaces. Codespaces is a development environment available for free to anyone with a Github account. You'll be asked to fork the demo repository and from there the README guides you with further steps.
The demo uses the Continue VSCode extension.

Off to codespaces!

DHelp

Ask a question

Welcome to "Codex Central", your next-gen help center, driven by OpenAI's GPT-4 model. It's more than just a forum or a FAQ hub – it's a dynamic knowledge base where coders can find AI-assisted solutions to their pressing problems. With GPT-4's powerful comprehension and predictive abilities, Codex Central provides instantaneous issue resolution, insightful debugging, and personalized guidance. Get your code running smoothly with the unparalleled support at Codex Central - coding help reimagined with AI prowess.