如何在grafana dashboard中获取命名空间中kubernetes集群的pod状态和container就绪状态

exdqitrt  于 2023-03-12  发布在  Kubernetes
关注(0)|答案(1)|浏览(229)

我正在尝试使用以下查询:kube容器状态就绪{名称空间="$名称空间”,容器="$容器”,容器="$容器”}
但不确定如何在Grafana中设置容器变量。需要这方面的帮助。

lf5gs5x2

lf5gs5x21#

转到浏览-〉指标浏览器
Select labels to search in中选择containter,然后选择任意值。
之后,应更新左侧的指标,以仅包括具有container标签的指标。
在我的情况下,它将是例如:kube_pod_container_info
在您的情况下,如果kube_pod_container_status_readycontainer标签,您可以使用它。
然后,添加带有查询的变量:label_values(kube_pod_container_info, container) / label_values(kube_pod_container_status_ready, container)

相关问题