Fork of discontinued wercker/stern
Stern allows you to tail
multiple pods on Kubernetes and multiple containers
within the pod. Each result is color coded for quicker debugging.
The query is a regular expression so the pod name can easily be filtered and you don't need to specify the exact id (for instance omitting the deployment id). If a pod is deleted it gets removed from tail and if a new pod is added it automatically gets tailed.
When a pod contains multiple containers Stern can tail all of them too without
having to do this manually for each one. Simply specify the container
flag to
limit what containers to show. By default all containers are listened to.
Download a binary release
go get -u github.com/stern/stern
If you use asdf, you can install like this:
asdf plugin-add stern
asdf install stern latest
If you use Homebrew, you can install like this:
brew install stern
stern pod-query [flags]
The pod
query is a regular expression so you could provide "web-\w"
to tail
web-backend
and web-frontend
pods but not web-123
.
flag | default | purpose |
---|---|---|
--all-namespaces , -A |
false |
If present, tail across all namespaces. A specific namespace is ignored even if specified with --namespace. |
--color |
auto |
Force set color output. 'auto': colorize if tty attached, 'always': always colorize, 'never': never colorize. |
--completion |
Output stern command-line completion code for the specified shell. Can be 'bash' or 'zsh'. | |
--container , -c |
.* |
Container name when multiple containers in pod. (regular expression) |
--container-state |
running |
Tail containers with state in running, waiting or terminated. To specify multiple states, repeat this or set comma-separated value. |
--context |
Kubernetes context to use. Default to current context configured in kubeconfig. | |
--ephemeral-containers |
true |
Include or exclude ephemeral containers. |
--exclude , -e |
Log lines to exclude. (regular expression) | |
--exclude-container , -E |
Container name to exclude when multiple containers in pod. (regular expression) | |
--exclude-pod |
Pod name to exclude. (regular expression) | |
--field-selector |
Selector (field query) to filter on. If present, default to ".*" for the pod-query. | |
--include , -i |
Log lines to include. (regular expression | |
--init-containers |
true |
Include or exclude init containers. |
--kubeconfig |
Path to kubeconfig file to use. Default to KUBECONFIG variable then ~/.kube/config path. | |
--namespace , -n |
Kubernetes namespace to use. Default to namespace configured in kubernetes context. To specify multiple namespaces, repeat this or set comma-separated value. | |
--output , -o |
default |
Specify predefined template. Currently support: [default, raw, json] |
--prompt , -p |
false |
Toggle interactive prompt for selecting 'app.kubernetes.io/instance' label values. |
--selector , -l |
Selector (label query) to filter on. If present, default to ".*" for the pod-query. | |
--since , -s |
48h0m0s |
Return logs newer than a relative duration like 5s, 2m, or 3h. |
--tail |
-1 |
The number of lines from the end of the logs to show. Defaults to -1, showing all logs. |
--template |
Template to use for log lines, leave empty to use --output flag. | |
--timestamps , -t |
false |
Print timestamps. |
--timezone |
Local |
Set timestamps to specific timezone. |
--version , -v |
false |
Print the version and exit. |
See stern --help
for details
Stern will use the $KUBECONFIG
environment variable if set. If both the
environment variable and --kubeconfig
flag are passed the cli flag will be
used.
stern supports outputting custom log messages. There are a few predefined
templates which you can use by specifying the --output
flag:
output | description |
---|---|
default |
Displays the namespace, pod and container, and decorates it with color depending on --color |
raw |
Only outputs the log message itself, useful when your logs are json and you want to pipe them to jq |
json |
Marshals the log struct to json. Useful for programmatic purposes |
It accepts a custom template through the --template
flag, which will be
compiled to a Go template and then used for every log message. This Go template
will receive the following struct:
property | type | description |
---|---|---|
Message |
string | The log message itself |
NodeName |
string | The node name where the pod is scheduled on |
Namespace |
string | The namespace of the pod |
PodName |
string | The name of the pod |
ContainerName |
string | The name of the container |
The following functions are available within the template (besides the builtin functions):
func | arguments | description |
---|---|---|
json |
object |
Marshal the object and output it as a json text |
color |
color.Color, string |
Wrap the text in color (.ContainerColor and .PodColor provided) |
Tail the gateway
container running inside of the envvars
pod on staging
stern envvars --context staging --container gateway
Tail the staging
namespace excluding logs from istio-proxy
container
stern -n staging --exclude-container istio-proxy .
Tail the kube-system
namespace excluding logs from kube-apiserver
pod
stern -n kube-system --exclude-pod kube-apiserver .
Show auth activity from 15min ago with timestamps
stern auth -t --since 15m
Show auth activity with timestamps in specific timezone (default is your local timezone)
stern auth -t --timezone Asia/Tokyo
Follow the development of some-new-feature
in minikube
stern some-new-feature --context minikube
View pods from another namespace
stern kubernetes-dashboard --namespace kube-system
Tail the pods filtered by run=nginx
label selector across all namespaces
stern --all-namespaces -l run=nginx
Follow the frontend
pods in canary release
stern frontend --selector release=canary
Tail the pods on kind-control-plane
node across all namespaces
stern --all-namespaces --field-selector spec.nodeName=kind-control-plane
Pipe the log message to jq:
stern backend -o json | jq .
Only output the log message itself:
stern backend -o raw
Output using a custom template:
stern --template '{{printf "%s (%s/%s/%s/%s)\n" .Message .NodeName .Namespace .PodName .ContainerName}}' backend
Output using a custom template with stern-provided colors:
stern --template '{{.Message}} ({{.Namespace}}/{{color .PodColor .PodName}}/{{color .ContainerColor .ContainerName}}){{"\n"}}' backend
Trigger the interactive prompt to select an 'app.kubernetes.io/instance' label value:
stern -p
Stern supports command-line auto completion for bash or zsh. stern --completion=(bash|zsh)
outputs the shell completion code which work by being
evaluated in .bashrc
, etc for the specified shell. In addition, Stern
supports dynamic completion for --namespace
and --context
. In order to use
that, kubectl must be installed on your environment.
If you use bash, stern bash completion code depends on the bash-completion. On the macOS, you can install it with homebrew as follows:
# If running Bash 3.2
brew install bash-completion
# or, if running Bash 4.1+
brew install bash-completion@2
Note that bash-completion must be sourced before sourcing the stern bash
completion code in .bashrc
.
source "$(brew --prefix)/etc/profile.d/bash_completion.sh"
source <(stern --completion=bash)
If you use zsh, just source the stern zsh completion code in .zshrc
.
source <(stern --completion=zsh)
You can also use stern using a container:
docker run ghcr.io/stern/stern --version
If you are using a minikube cluster, you need to run a container as follows:
docker run --rm -v "$HOME/.minikube:$HOME/.minikube" -v "$HOME/.kube:/$HOME/.kube" -e KUBECONFIG="$HOME/.kube/config" ghcr.io/stern/stern .
You can find image tags in https://github.com/orgs/stern/packages/container/package/stern.
If you want to use stern in Kubernetes Pods, you need to create the following ClusterRole and bind it to ServiceAccount.
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: stern
rules:
- apiGroups: [""]
resources: ["pods", "pods/log"]
verbs: ["get", "watch", "list"]
Please see CONTRIBUTING for details.