ops status
Show overall system status across all projects. Aggregates health, errors, and pipeline status from every registered project into a single view.
Morning Triage
This is the best first command to run each morning. It surfaces failures across the entire portfolio so you know where to dig in before opening a single dashboard.
Synopsis
Quick health overview across all projects
Terminal
$ops status
When to Use
🌅
Morning Check-In
Start your day with ops status to see what failed overnight before diving into specific projects.
🚨
Incident Triage
When something feels off, ops status --verbose shows recent errors per project so you can narrow the blast radius.
🤖
Agent Context
Pipe ops status --json into an AI assistant for a live snapshot of system state.
Flags
| Flag | Shorthand | Type | Description |
|---|---|---|---|
--json | — | flag | Output as JSON for machine consumption |
--verbose | -v | flag | Show detailed status including recent errors |
--project | -p | TEXT | Filter to a specific project (matches name or prefix) |
Examples
Quick overview
Compact health summary across all projects
Terminal
$ops status
Detailed view with errors
Expand each project with recent errors and pipeline failures
Terminal
$ops status --verbose
Filter to a single project
Show only projects matching 'wdp' (e.g. wdp-import, wdp-palantiri)
Terminal
$ops status -p wdp
Machine-readable output
JSON output suitable for scripts, dashboards, or AI agents
Terminal
$ops status --json
Combined Workflow
Pair ops status with ops prefect runs --state FAILED when you need to drill into a specific pipeline failure surfaced in the overview.