Grafana 为图表定义标题值

Grafana define Title value for chart

我正在尝试创建仪表板。能够从 Prometheus 数据生成 Bar Gauge 以进行简单查询 sum by (namespace) (kube_pod_container_status_running)

我只想显示命名空间而不是 {namespace="kube-system"},所以我玩了一段时间 Visualization > Field > Title,但没能成功弄清楚。

任何想法如何只显示 kube-system 而不是 {namespace="kube-system"} 并按排序顺序排列列表,因为每次刷新仪表板时,它都会重新排列顺序。

我需要什么?

https://grafana.com/docs/grafana/latest/features/datasources/prometheus/

Legend format

Controls the name of the time series, using name or pattern. For example {{hostname}} will be replaced with label value for the label hostname.

=> 在 Queries 部分配置 Legend format 并在其中添加 {{namespace}}

我不确定排序。您可以尝试使用 Prometheus sort/sort_desc 函数对查询结果进行排序。