Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试构建一个复合指标,该指标显示为指标报告的源计数,并对其发出警报(例如,如果源计数小于 3)。这可能吗?
是的,这是可能的。现在有点令人费解,我们将来会使其更简单,但这会起作用:
sum( map({source:"*"}, divide([ series("my_metric","&"), series("my_metric","&") ]) ) )
这是一个快速的解释:
map() 函数分解出所有指标的来源(通过使用 * 通配符)。我将指标本身除以每个实例的 1,然后将所有包含在 sum() 函数中的内容加起来。