gpt4 book ai didi

Prometheus 在计算两个指标的比率时不返回任何数据

转载 作者:行者123 更新时间:2023-12-03 15:59:48 26 4
gpt4 key购买 nike

我想计算两个指标的比率,但我没有得到任何数据...
我有一些指标,例如:

fs_bytes{filesystem="/var",instance="localhost:9108",job="graphite",metric="Used"}   50.0
fs_bytes{filesystem="/var",instance="localhost:9108",job="graphite",metric="Total"} 100.0
当我尝试执行任何操作(设备、乘法、加法、减法)时,例如:
fs_bytes{instance="localhost:9108",metric="Used"} / fs_bytes{instance="localhost:9108",metric="Total"}
普罗米修斯返回:
no data
当我在 Prometheus 表达式浏览器中单独查询每个指标时,我确实得到了指标值。
怎么了?

最佳答案

当 prometheus 对表达式求值时,该操作隐式应用于共享相同标签集的指标。
尽管我指定了指标名称和大多数标签,但 Prometheus 一直在寻找具有相同标签集的指标。
但是,在这种情况下,两个指标具有不同的标签值,因此无法匹配! (一个指标有 metric="Used" 另一个有 metric="Total" 。可能是其中一个指标有一些额外的标签)。
解决方法是使用ignore (或 on )以减少考虑的标签集:

fs_bytes{instance="localhost:9108",metric="Used"} / ignoring(metric) fs_bytes{instance="localhost:9108",metric="Total"}
阅读精美的手册! ( here )

关于Prometheus 在计算两个指标的比率时不返回任何数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51080209/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com