From 5661209585cfc90f36df868f0c46064429f01c6d Mon Sep 17 00:00:00 2001 From: Lukasz Jagiello Date: Sun, 7 Feb 2016 21:53:23 +0000 Subject: [PATCH] missing aggregate logic --- plugins/inputs/statsd/statsd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/inputs/statsd/statsd.go b/plugins/inputs/statsd/statsd.go index 932729d5a..14e0dba9c 100644 --- a/plugins/inputs/statsd/statsd.go +++ b/plugins/inputs/statsd/statsd.go @@ -525,7 +525,7 @@ func (s *Statsd) aggregate(m metric) { } else { s.gauges[m.hash].fields[m.field] = m.floatvalue } - case "s": + case "s", "m", "mr": // check if the measurement exists _, ok := s.sets[m.hash] if !ok {