我正在尝试使用以下查询:kube容器状态就绪{名称空间="$名称空间”,容器="$容器”,容器="$容器”}但不确定如何在Grafana中设置容器变量。需要这方面的帮助。
lf5gs5x21#
转到浏览-〉指标浏览器在Select labels to search in中选择containter,然后选择任意值。之后,应更新左侧的指标,以仅包括具有container标签的指标。在我的情况下,它将是例如:kube_pod_container_info在您的情况下,如果kube_pod_container_status_ready有container标签,您可以使用它。然后,添加带有查询的变量:label_values(kube_pod_container_info, container) / label_values(kube_pod_container_status_ready, container)
Select labels to search in
containter
container
kube_pod_container_info
kube_pod_container_status_ready
label_values(kube_pod_container_info, container)
label_values(kube_pod_container_status_ready, container)
1条答案
按热度按时间lf5gs5x21#
转到浏览-〉指标浏览器
在
Select labels to search in
中选择containter
,然后选择任意值。之后,应更新左侧的指标,以仅包括具有
container
标签的指标。在我的情况下,它将是例如:
kube_pod_container_info
在您的情况下,如果
kube_pod_container_status_ready
有container
标签,您可以使用它。然后,添加带有查询的变量:
label_values(kube_pod_container_info, container)
/label_values(kube_pod_container_status_ready, container)