根据定义,kube_pod_container_status_waiting_reason
应该捕获 Pod 处于 Waiting 状态的原因。
我的 kubernetes 集群中有几个 pod,它们位于 CrashLoopBackOff 中,但我没有看到kube_pod_container_status_waiting_reason
. 它只捕获了两个原因 - ErrImagePull 和 ContainerCreating。
~$ k get pods -o wide --show-all --all-namespaces | grep Crash
cattle-system cattle-cluster-agent-6f744c67cc-jlkjh 0/1 CrashLoopBackOff 2885 10d 10.233.121.247 k8s-4
cattle-system cattle-node-agent-6klkh 0/1 CrashLoopBackOff 2886 171d 10.171.201.127 k8s-2
cattle-system cattle-node-agent-j6r94 0/1 CrashLoopBackOff 2887 171d 10.171.201.110 k8s-3
cattle-system cattle-node-agent-nkfcq 0/1 CrashLoopBackOff 17775 171d 10.171.201.131 k8s-1
cattle-system cattle-node-agent-np76b 0/1 CrashLoopBackOff 2887 171d 10.171.201.89 k8s-4
cattle-system cattle-node-agent-pwn5v 0/1 CrashLoopBackOff 2859 171d 10.171.202.72 k8s-5
sum by (reason) (kube_pod_container_status_waiting_reason)
在 prometheus 中运行会产生结果:
Element Value
{reason="ContainerCreating"} 0
{reason="ErrImagePull"} 0
我正在运行quay.io/coreos/kube-state-metrics:v1.2.0
kube-state-metrics 的图像。
我错过了什么?为什么 CrashLoopBackOff 原因没有出现在查询中?我想设置一个警报,查找处于等待状态的 pod 并说明原因。所以考虑合并kube_pod_container_status_waiting
以找到处于等待状态的 pod 并kube_pod_container_status_waiting_reason
找到确切的原因。
请协助。谢谢!