Kubernetes (K8s) - 你能检查 pod 的重启时间吗?
Kubernetes (K8s) - Can you check what time a pod restarts at?
我正在尝试创建系统健康检查。我希望能够确定 pods 重新启动的频率。由于 pods 有 liveness 探测器,如果出现问题,它们可能会不断重启。有没有办法检查 pod 重新启动的时间,而不仅仅是重新启动的次数和 pod 存活的总时间?
您可能想要使用 monitoring tool,例如 cAdvisor/Heapster/Grafana/Prometheus。
您的另一个选择是部署 kube-state-metrics container。
值得阅读的好文章:Monitoring Kubernetes and Get Kubernetes Cluster Metrics with Prometheus。
另外,阅读 Whosebug.
上的类似问题
我正在尝试创建系统健康检查。我希望能够确定 pods 重新启动的频率。由于 pods 有 liveness 探测器,如果出现问题,它们可能会不断重启。有没有办法检查 pod 重新启动的时间,而不仅仅是重新启动的次数和 pod 存活的总时间?
您可能想要使用 monitoring tool,例如 cAdvisor/Heapster/Grafana/Prometheus。
您的另一个选择是部署 kube-state-metrics container。
值得阅读的好文章:Monitoring Kubernetes and Get Kubernetes Cluster Metrics with Prometheus。 另外,阅读 Whosebug.
上的类似问题