Merge pull request #63 from overleaf/bg-log-out-of-order-events

log out of order events now that the rate is lower
This commit is contained in:
Brian Gough 2019-07-17 13:47:45 +01:00 committed by GitHub
commit 9ecce32ff9

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) ->