Skip to Content

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

FlagDescription
--endpoint <URL>API endpoint. Auto-detected for a local instance.
--token <TOKEN>Bearer token for remote access.
--jsonJSON output for scripts.

Examples

hiveloom status
hiveloom 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

  • health answers “is the process up?” — fast, no auth, suitable for an uptime probe.
  • status answers “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.