missing aggregate logic

This commit is contained in:
Lukasz Jagiello 2016-02-07 21:53:23 +00:00
parent adfab1cb2c
commit 5661209585
1 changed files with 1 additions and 1 deletions

View File

@ -525,7 +525,7 @@ func (s *Statsd) aggregate(m metric) {
} else { } else {
s.gauges[m.hash].fields[m.field] = m.floatvalue s.gauges[m.hash].fields[m.field] = m.floatvalue
} }
case "s": case "s", "m", "mr":
// check if the measurement exists // check if the measurement exists
_, ok := s.sets[m.hash] _, ok := s.sets[m.hash]
if !ok { if !ok {