> ## Documentation Index
> Fetch the complete documentation index at: https://docs.devhelm.io/llms.txt
> Use this file to discover all available pages before exploring further.

# status

> DevHelm CLI status command — view current monitor and incident status overview

Get a quick overview of your monitors and active incidents from the command line.

## Usage

```bash theme={null}
devhelm status
```

The default view shows a summary of monitor health — how many are up, down, degraded, and paused, with 24h/30d uptime — plus active incident count, incidents resolved today, and 30-day MTTR.

## JSON output

```bash theme={null}
devhelm status -o json
```

Useful for dashboards, scripts, or feeding into other tools:

```bash theme={null}
devhelm status -o json | jq '.monitors.down'
```

## Next steps

<CardGroup cols={2}>
  <Card title="Monitors" icon="signal" href="/cli/commands/monitors">
    Manage individual monitors.
  </Card>

  <Card title="Incidents" icon="triangle-exclamation" href="/cli/commands/incidents">
    View and resolve incidents.
  </Card>
</CardGroup>
