get_instance_status
Get the global health status of a Dagster instance, highlighting unhealthy daemons and code location errors. Use as the first step in monitoring.
Instructions
Get a global health check of the Dagster instance. START HERE for any monitoring workflow.
Returns:
healthy: boolean — true only if all required daemons are healthy AND no code locations have errors
daemons: list of {type, healthy, last_heartbeat, required} for each daemon (scheduler, sensor, run coordinator, etc.)
queued_runs_count: number of runs waiting in queue (high count = bottleneck)
code_location_errors: list of {name, error} for locations that failed to load
When to use: as the FIRST call in any diagnostic or monitoring flow. If healthy=false, check daemons for unhealthy entries and code_location_errors for loading failures. Follow up with list_code_locations or get_runs as needed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| env | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||