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 {