Graphite 中带有 asPercent 的多个通配符

Graphite 中带有 asPercent 的多个通配符

我有多个系列stats.counters.app.view.isbn.fetch.found.{yes,no}.$service。我想计算每个的故障率$service

  • #A reduceSeries(mapSeries(group(#B, #C), 0), 'asPercent', 1, 'none', 'total')
  • #B aliasSub(groupByNode(stats.counters.app.view.isbn.fetch.found.*.*.rate, 8, "sumSeries"), "^(.*)$", "\1.total")
  • #C aliasSub(groupByNode(stats.counters.app.view.isbn.fetch.found.no.*.rate, 8, "sumSeries"), "^(.*)$", "\1.none")

但是,这会导致错误。在我尝试过的所有可能的变体中,这个感觉最正确,但它仍然失败了。

答案1

我想我明白了。可以使用 解决groupByNode

  • #A groupByNode(group(#B, #C), 0, 'asPercent')
  • #B aliasSub(groupByNode(stats.counters.app.view.isbn.fetch.found.yes.*.rate, 8, "sumSeries"), "^(.*)$", "\1.yes")
  • #C aliasSub(groupByNode(stats.counters.app.view.isbn.fetch.found.no.*.rate, 8, "sumSeries"), "^(.*)$", "\1.no")

相关内容