2025-03-14 21:59:59 -06:00
|
|
|
# kubetail
|
|
|
|
|
|
|
|
|
|
> Utility to tail multiple Kubernetes pod logs at the same time.
|
|
|
|
|
> More information: <https://github.com/johanhaleby/kubetail>.
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
- Tail the logs of multiple pods (whose name starts with `app_name`) in one go:
|
2025-03-14 21:59:59 -06:00
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`kubetail {{app_name}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Tail only a specific container from multiple pods:
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`kubetail {{app_name}} {{[-c|--container]}} {{container_name}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
- Tail multiple containers from multiple pods:
|
2025-03-14 21:59:59 -06:00
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`kubetail {{app_name}} {{[-c|--container]}} {{container_name_1}} {{[-c|--container]}} {{container_name_2}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
- Tail multiple applications at the same time separate them by comma:
|
2025-03-14 21:59:59 -06:00
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`kubetail {{app_name_1,app_name_2,...}}`
|