sentinel docs

CLI

Commands

Workflow-oriented guide to the main Sentinel commands, with links to the full CLI reference.

Start with one of these

  • sentinel docker Best first command for local multi-container development.
  • sentinel dev Best when you want Sentinel to supervise a configured multi-service dev stack.
  • sentinel run -- <command> Best first command when you own the process launch.
  • sentinel stdin Best when another command already produces the logs you want.
  • sentinel watch <glob...> Best when your app writes log files.

Docker workflow

CommandPurpose
sentinel dockerStart ingesting Docker logs with auto-discovery
sentinel docker --all-runningIgnore Compose auto-discovery and watch every running container
sentinel docker listShow watched and ignored containers
sentinel docker explain [container...]Explain selection behavior for one or more containers

Dev stack workflow

CommandPurpose
sentinel dev initCreate .sentinel.yml for the current repo via the wizard
sentinel devStart the selected service group and open the terminal UI
sentinel dev --group <name>Start a named service group
sentinel dev --attach-onlyAttach to already-running services; do not start command services
sentinel dev --dry-runPrint the resolved plan and exit without starting anything
sentinel dev --yesSkip the preflight confirmation prompt
sentinel dev status [--json]Show the active dev session state for this workspace
sentinel dev stop [--force]Stop the active dev supervisor (--force after an 8s graceful timeout)
sentinel dev doctor [--group <n>] [--json]Check Docker, Compose, and per-service binaries

For the full guide, including .sentinel.yml schema, TUI keybindings, redaction behavior, and OTLP injection, see Dev.

Issue workflow

CommandPurpose
sentinel historyList recent fingerprints/issues
sentinel explainInspect an issue in more detail
sentinel investigate <fingerprint-prefix>Mark an issue as investigating
sentinel resolve <fingerprint-prefix>Mark an issue as resolved
sentinel suppress <fingerprint-prefix>Mute an issue from analysis
sentinel unsuppress <fingerprint-prefix>Remove suppression
sentinel checkCheck runtime configuration and environment
sentinel analyzeRe-run triage on unresolved or recent issues

UI, traces, and maintenance

CommandPurpose
sentinel uiStart the local web UI
sentinel tracesList recent trace rows with filters
sentinel trace <trace-id>Show a single trace and its spans
sentinel project listList known projects
sentinel project delete <project>Delete one project’s stored data
sentinel updateUpdate the installed binary from published releases
sentinel versionPrint version information
  • Docker users: sentinel docker
  • Supervised local stack: sentinel dev
  • Local dev server: sentinel run -- npm run dev
  • Existing log command: docker logs -f api | sentinel stdin
  • File logs: sentinel watch ./logs/*.log
  • Inspect issues: sentinel ui
  • Inspect traces: sentinel traces

For exact syntax, flags, and examples, use the CLI reference.