Reference for the orun HTTP status API on port 9100, including POST /status for full deployment reports and POST /healthz for liveness checks.
Each orun node exposes a lightweight HTTP API on port 9100 (configurable via --status-port) that lets you inspect node health and the current state of all deployments and services. The server binds to localhost only — to query it from a remote machine, open an SSH tunnel first.
The status API is read-only and makes no changes to containers or configuration. It reads exclusively from the in-memory state store maintained by the agent.
Returns a simple liveness response. Use this endpoint to confirm the orun agent process is running and able to accept requests.Request: no body required.Response:
Returns the full NodeReport — a consistent, point-in-time snapshot of the node, all tracked deployments, and all active ingress routes.Request: no body required.Response: a NodeReport object.