英文:
Why can I only use sum on this formula monitor?
问题
我试图创建一个监控器,在错误率超过阈值时发出警报,使用以下设置。公式中使用的两个指标都是count
指标。为什么Datadog只允许使用sum
?
英文:
I'm trying to create a monitor that alerts when error rate is beyond a threshold using the below setup. Both of the metrics used in the formula are count
metrics. Why does datadog only allow using sum
?
答案1
得分: 0
这是因为使用了 as_count()
。
我在Datadog的文档中找到了以下信息:
> 通常情况下,使用 .as_rate()
进行平均时间聚合是合理的,但在处理错误率时建议使用 .as_count()
进行总数聚合。除总和以外的聚合方法不适用于(也不能与).as_count()
一起使用。
英文:
This is due to the usage of as_count()
.
I found the following in Datadog's documentation:
>In general, avg time aggregation with .as_rate() is reasonable, but sum aggregation with .as_count() is recommended for error rates. Aggregation methods other than sum do not make sense to use with (and cannot be used with) .as_count().
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论