missing aggregate logic
This commit is contained in:
parent
adfab1cb2c
commit
5661209585
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue