我正在使用带有Prometheus 2.0的Grafana 4.3.2作为数据源。
我正在尝试在Grafana上显示普罗米修斯直方图。我从Prometheus检索的值如下所示:

http_request_duration_seconds_bucket{<other_labels>, le="+Inf"}     146
http_request_duration_seconds_bucket{<other_labels>, le="0.005"}    33
http_request_duration_seconds_bucket{<other_labels>, le="0.01"}     61
http_request_duration_seconds_bucket{<other_labels>, le="0.025"}    90
http_request_duration_seconds_bucket{<other_labels>, le="0.05"}     98
http_request_duration_seconds_bucket{<other_labels>, le="0.1"}      108
http_request_duration_seconds_bucket{<other_labels>, le="0.25"}     131
http_request_duration_seconds_bucket{<other_labels>, le="0.5"}      141
http_request_duration_seconds_bucket{<other_labels>, le="1"}        146
http_request_duration_seconds_bucket{<other_labels>, le="10"}       146
http_request_duration_seconds_bucket{<other_labels>, le="2.5"}      146
http_request_duration_seconds_bucket{<other_labels>, le="5"}        146

因此,我希望看到的是12个存储桶,其值在右侧指定。但是,Grafana显示的值完全不同,如下所示:

histogram - Grafana直方图显示错误的值(数据源: Prometheus)-LMLPHP

我有什么想念的吗,还是Grafana根本不支持Prometheus直方图(丢弃“le”标签)?

最佳答案

您需要将图例格式设置为“{{le}}”

关于histogram - Grafana直方图显示错误的值(数据源: Prometheus),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44700203/

10-15 20:28