check for a valid counter value in event log

This commit is contained in:
Brian Gough 2019-03-21 14:49:25 +00:00
parent 9b25374cd3
commit 57c5ec14bd

View file

@ -15,7 +15,7 @@ module.exports = EventLogger =
return if typeof(message_id) isnt 'string'
[key, count] = message_id.split("-", 2)
count = parseInt(count, 10)
if !count # ignore checks if counter is not present
if !(count >= 0)# ignore checks if counter is not present
return
# store the last count in a hash for each host
previous = EventLogger._storeEventCount(key, count)