Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.helix-db.com/llms.txt

Use this file to discover all available pages before exploring further.

For the complete documentation index optimized for AI agents, see llms.txt.
View logs for a local or V2 Cloud instance.
  • For local instances, logs come from docker logs / podman logs.
  • For V2 Cloud instances, logs are fetched over a time range from Helix Cloud and require helix auth login.

Usage

helix logs [INSTANCE] [OPTIONS]

Arguments

ArgumentDescription
INSTANCEInstance name. If omitted in a TTY with multiple instances, the CLI prompts. Defaults to dev when present and no prompt is needed.

Available flags

FlagTypeDescriptionDefault
-f, --followBooleanStream live logs. Local only — rejected for V2 Cloud instances.false
-r, --rangeBooleanQuery historical logs from Helix Cloud over a time range. V2 Cloud only.false
--startRFC 3339 timestampStart of the range. Requires --range.--end minus 1 hour
--endRFC 3339 timestampEnd of the range. Requires --range.Now (UTC)
--range, --start, and --end are rejected for local instances with:
--range, --start, and --end are only supported for Enterprise logs;
local logs use docker/podman logs
--follow against a V2 Cloud instance is rejected with:
live Enterprise logs are not supported yet; use --range instead

Examples

# Dump local container logs once
helix logs dev

# Stream local logs
helix logs dev --follow

# Last hour of V2 Cloud logs (defaults: end=now, start=end-1h)
helix logs production --range

# Fixed V2 Cloud log range
helix logs production \
  --range \
  --start 2026-05-12T10:00:00Z \
  --end   2026-05-12T11:00:00Z