allow options for count

This commit is contained in:
Brian Gough 2019-12-16 10:18:30 +00:00
parent 53aa2490f5
commit 93df87eff3

View file

@ -83,9 +83,11 @@ module.exports = Metrics =
if process.env['DEBUG_METRICS']
console.log("doing inc", key, opts)
count : (key, count, sampleRate = 1)->
count : (key, count, sampleRate = 1, opts = {})->
key = Metrics.buildPromKey(key)
prom.metric('counter', key).inc({app: appname, host: hostname}, count)
opts.app = appname
opts.host = hostname
prom.metric('counter', key).inc(opts, count)
if process.env['DEBUG_METRICS']
console.log("doing count/inc", key, opts)