log out of order events now that the rate is lower

This commit is contained in:
Brian Gough 2019-07-15 11:14:48 +01:00
parent a724021900
commit 24a4709cff

View file

@ -35,12 +35,11 @@ module.exports = EventLogger =
return # order is ok
if (count == previous)
metrics.inc "event.#{channel}.duplicate"
if Math.random() < 0.01
logger.warn {channel:channel, message_id:message_id}, "duplicate event (sampled at 1%)"
logger.warn {channel:channel, message_id:message_id}, "duplicate event"
return "duplicate"
else
metrics.inc "event.#{channel}.out-of-order"
# logger.warn {channel:channel, message_id:message_id, key:key, previous: previous, count:count}, "out of order event"
logger.warn {channel:channel, message_id:message_id, key:key, previous: previous, count:count}, "out of order event"
return "out-of-order"
_storeEventCount: (key, count) ->