有没有办法使用带有holt_winters函数调用的Prometheus计数器?

时间:2017-01-24 05:34:37

标签: prometheus

在Prometheus文档中,它描述了可用于生成平滑曲线的holt_winters()函数。

然而,文档声明它只应与Gauges一起使用。 (显然我可以使用它与计数器bu然后我只是得到一个平滑的线,总是上升,不是非常有用)

我想对holt_winters()等计数器使用http_request_total函数。

喜欢的东西;

holt_winters(rate(http_request_total[5m])) by (path)

这可能吗?或者有更好的方法来解决这个问题吗?

1 个答案:

答案 0 :(得分:3)

您需要使用录制规则来存储费率的结果,请参阅https://www.robustperception.io/composing-range-vector-functions-in-promql/