I've got three metrics "memoryFree", "memoryBuffered", "memoryCached". These metrics appear under each of the ec2 hosts in the following metric tree:
system.radar123.collectd.ec2*_com.memory.
For each ec2 host I would like to sum the three metrics and display the sum. How to do this? Is there a graphite web function that will iterate over the wildcard and treat each one separately?
Asked
Active
Viewed 2,813 times
1

Michael Martinez
- 2,645
- 3
- 24
- 35
1 Answers
1
This can be done by groupByNode
:
groupByNode(system.radar123.collectd.ec2*_com.memory-{buffered,cached,free},3,\"sumSeries\")

Michael Martinez
- 2,645
- 3
- 24
- 35