CLI reference
jekyo logs
Show (or follow) logs.
Usage
jekyo logs <app>[/<service>[/<container>]] [flags]
The target narrows from app to container: "shop" streams every service, "shop/web" one service (all its containers, prefixed), and "shop/web/proxy" a single sidecar. When the second segment matches no service, it is resolved as a container name across the app, so a sidecar can be addressed directly as "shop/proxy".
Flags
| Flag | Description |
|---|---|
-f, --follow | stream new log lines |
--since string | only logs newer than a duration (e.g. 1h) |
--tail int | lines of recent logs per pod (0 = all) (default 200) |
-t, --timestamps | prefix each line with its RFC3339 timestamp |
Examples
jekyo logs myapp -f # follow everything
jekyo logs myapp/api -t # one service, timestamped lines
jekyo logs myapp --since 1h --tail 500