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

FlagDescription
-f, --followstream new log lines
--since stringonly logs newer than a duration (e.g. 1h)
--tail intlines of recent logs per pod (0 = all) (default 200)
-t, --timestampsprefix 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
Previous
jekyo down