voodu logs

Tail container logs — single pod, scope-wide, or multiplexed.

Synopsis

voodu logs <target> [flags]

<target> can be:

  • A resource key: app/prod/api
  • A pod name: prod-api.0
  • A scope: -s prod (multiplexes all pods in scope)
  • A kind: cronjob clowk-lp/wal-sync-s3

Common usage

# Tail one app, all replicas multiplexed
voodu logs app/prod/api -f

# Single replica
voodu logs prod-api.1

# Whole scope (apps + cronjobs + jobs)
voodu logs -s prod -f

# Last 200 lines, no follow
voodu logs app/prod/api -n 200

Flags

FlagDescription
-f, --followStream new lines as they appear.
-n, --tailNumber of historical lines (default 100).
-s, --scopeMultiplex across a scope.
--sinceShow lines since: 5m, 1h, 2025-01-01T00:00:00Z.
--grepServer-side line filter (regex).
--no-prefixOmit the [pod-name] prefix in multiplexed output.

On this page