hiveloom status
A higher-fidelity summary than hiveloom health: version,
uptime, listening address, data directory, and tenant/agent counts. Useful as
the first command after a deploy or upgrade.
Synopsis
hiveloom status [OPTIONS]Options
| Flag | Description |
|---|---|
--endpoint <URL> | API endpoint. Auto-detected for a local instance. |
--token <TOKEN> | Bearer token for remote access. |
--json | JSON output for scripts. |
Examples
hiveloom statushiveloom status --endpoint https://hiveloom.example.com --token "$ADMIN_TOKEN"JSON, piped to jq:
hiveloom status --json | jq '.version, .tenants, .uptime_seconds'When to use it vs. health
healthanswers “is the process up?” — fast, no auth, suitable for an uptime probe.statusanswers “what version and how much is running?” — needs admin auth on remote instances, gives you the numbers you’d want post-deploy.
For deeper diagnostics (DB integrity, file permissions, provider key
reachability), use hiveloom doctor.