Kubernetes Liveness Probe Logging

2019-03-30 07:35发布

We're using Kubernetes 1.1.3 with its default fluentd-elasticsearch logging.

We also use LivenessProbes on our containers to make sure they operate as expected.

Our problem is that lines we send out to the STDOUT from the LivenessProbe does not appear to reach Elastic Search.

Is there a way to make fluentd ship LivenessProbes output like it does to regular containers in a pod?

1条回答
Lonely孤独者°
2楼-- · 2019-03-30 07:45

The output from the probe is swallowed by the Kubelet component on the node, which is responsible for running the probes (source code, if you're interested). If a probe fails, its output will be recorded as an event associated with the pod, which should be accessible through the API.

The output of successful probes isn't recorded anywhere unless your Kubelet has a log level of at least --v=4, in which case it'll be in the Kubelet's logs.

Feel free to file a feature request in a Github issue if you have ideas of what you'd like to be done with the output :)

查看更多
登录 后发表回答