Skip to main content

Health API

Monitor system health and configure heartbeat schedules.

Health check (web)

No authentication required. Returns system health metrics including CPU and memory usage.
The backend service exposes its own health check at GET /health (without the /api prefix). The web and backend health endpoints are independent — the web endpoint reports on the web application process while the backend endpoint reports on the API service. See backend health check below for details.

Response

The health field reflects overall system status:

Degraded and unhealthy responses

When the system is degraded or unhealthy, the endpoint still returns HTTP 200 with the health field set to degraded or unhealthy. The status field remains ok.

Error response

An HTTP 500 is returned only when an unexpected error occurs while collecting health metrics, not for degraded or unhealthy status:

Backend health check

No authentication required. Returns backend service status including Docker availability. This endpoint is served by the backend API service (without the /api prefix).
The backend API continues to serve non-Docker endpoints (health, metrics, auth, AI, registration) even when Docker is not available. Container provisioning and lifecycle operations are disabled until Docker becomes available.

Response

Response when Docker is unavailable

When Docker is not available on the host, the health endpoint still returns HTTP 200 but reports degraded capabilities:
When provisioning is disabled, any request to a container-dependent endpoint (such as deploying, starting, stopping, or restarting an agent) returns a 500 error. Non-container endpoints continue to operate normally.

Get heartbeat settings

Requires session authentication. Returns the heartbeat schedule for a specific agent. Heartbeat settings control how frequently the agent wakes up to perform autonomous actions.

Query parameters

Response

Errors

Update heartbeat settings

Requires session authentication. Configures the heartbeat schedule for an agent. The nextHeartbeat is calculated automatically from the current time plus the parsed frequency.

Request body

Response

Errors

Delete heartbeat settings

Requires session authentication. Removes the heartbeat settings for an agent.

Request body

Response

Errors

Container health checks

Agent containers run the official OpenClaw image, which exposes built-in health endpoints on port 18789. The backend uses these to determine container readiness during provisioning and ongoing monitoring.

Built-in health endpoints

The OpenClaw image (ghcr.io/openclaw/openclaw:2026.3.13) provides two health endpoints on each agent container: Both endpoints are unauthenticated and bind to the container’s internal port (18789).

/healthz response

/readyz response

The backend also probes /health on port 18789 for application-level health checks. The /healthz and /readyz endpoints are provided by the OpenClaw image itself and are available on all agent containers.

Container health statuses

Health check behavior

  • Docker runs a HEALTHCHECK against http://127.0.0.1:18789/healthz every 30 seconds with a 5-second timeout, a 20-second start period, and 5 retries before marking the container as unhealthy. The health probe uses node -e "fetch(...)" instead of curl because the official OpenClaw image does not include curl.
  • The waitForHealthy function polls container health every 2 seconds, with a default overall timeout of 60 seconds.

Watchdog monitoring

The backend runs a per-agent watchdog service that continuously monitors agent health, detects crash loops, and performs automatic recovery. The watchdog operates internally and does not expose dedicated API endpoints. Status information is surfaced through the existing agent status and lifecycle endpoints.

Health check cycle

The watchdog probes each agent’s gateway at GET /healthz on the agent’s internal port. Health checks run on a configurable interval (default: every 2 minutes). When the gateway reports unhealthy, the watchdog transitions the agent to a degraded state and increases the check frequency to every 5 seconds.

Lifecycle states

The watchdog tracks the following lifecycle states for each agent:

Auto-repair

When the watchdog detects an unhealthy agent, it can automatically attempt recovery. Auto-repair is enabled by default and can be disabled by setting the WATCHDOG_AUTO_REPAIR environment variable to false. The repair sequence is:
  1. Kill the agent gateway process
  2. Wait 5 seconds
  3. Restart the gateway
  4. Wait 30 seconds (startup grace period)
  5. Verify health
If the repair fails, the watchdog retries up to the configured maximum (default: 2 attempts). After exhausting all repair attempts, the agent transitions to the crash_loop state.

Crash loop detection

The watchdog tracks crash timestamps within a sliding window (default: 5 minutes). When the number of crashes in the window reaches the threshold (default: 3), the agent enters the crash_loop state. This prevents infinite restart loops for agents with persistent failures.

Notifications

The watchdog sends notifications for critical events (degraded, crash loop, repair attempts) through configured channels:
  • Telegram — when TELEGRAM_BOT_TOKEN and TELEGRAM_ADMIN_CHAT_ID are set
  • Discord — when DISCORD_WEBHOOK_URL is set