I have a StatsD counter foo. I want to make a graph showing the number of times per minute this counter is incremented. I think I should use either sum_over_time or avg_over_time.
I observe that when I graph sum_over_time(foo[1m]) vs avg_over_time(foo[1m]), the former is always exactly 6x the latter. This may be related to the fact that 1m is 6x my StatsD flush interval of 10s.
What are these two functions doing? Why is one 6x the other? Which one should I use if I want to compute the rate of increments per minute?