放大Grafana后图表上的错误值

时间:2015-08-04 08:39:25

标签: graphite grafana

例如,图表显示最近5分钟的数据(值= 1):

enter image description here

但在缩小后,例如,“12小时前”,它显示不同的值(0.67): enter image description here

发生什么事了?是grafana问题吗?

1 个答案:

答案 0 :(得分:0)

您正在寻找积分合并。当需要可视化的数据点过多时,Graphite/Grafana 会将多个点合并为一个点,即它们的平均值

您可能希望将合并函数从“平均”更改为“最大”(以查看每个区间的最高值)。

您可以在函数选择器中通过添加 consolidateBy 函数来更改它。例如:

consolidateBy( originalFunction , 'max')

在 Grafana 文档中: https://grafana.com/docs/grafana/latest/datasources/graphite/#point-consolidation

在石墨文档中: https://graphite.readthedocs.io/en/latest/functions.html#graphite.render.functions.consolidateBy