CLI reference
jekyo logs
Show (or follow) logs for an app or one service.
Usage
jekyo logs <app>[/<service>] [flags]
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