down-sample valid events by 1000

This commit is contained in:
Brian Gough 2019-03-21 15:52:53 +00:00
parent e91b967bdb
commit 1ab5e52699

View file

@ -21,7 +21,7 @@ module.exports = EventLogger =
# store the last count in a hash for each host
previous = EventLogger._storeEventCount(key, count)
if !previous? || count == (previous + 1)
metrics.inc "event.#{channel}.valid"
metrics.inc "event.#{channel}.valid", 0.001
return # order is ok
if (count == previous)
metrics.inc "event.#{channel}.duplicate"