是否有一种方法可以合并Graphite中两个值的“字典”?也就是说,我想从一系列开始:
AnimalsByCountry
England
Cats
Dogs
France
Cats
Dogs
Birds
并将它们组合成系列:
AnimalsInWorld
Cats // = AnimalsByCountry.England.Cats + AnimalsByCountry.France.Cats
Dogs // = AnimalsByCountry.England.Dogs + AnimalsByCountry.France.Dogs
Birds // = AnimalsByCountry.France.Birds
很抱歉,如果这是一个显而易见的问题;我是Graphite的新手,这似乎是一个简单的操作,但是我在文档中找不到任何函数来实现它。
答案 0 :(得分:0)
使用https://graphite.readthedocs.io/en/latest/functions.html#graphite.render.functions.groupByNodes
groupByNodes(animalsbycountry.*.*,'sum',2)