Fix typo, gague -> gauge

This commit is contained in:
Simon Detheridge 2019-10-28 12:34:04 +00:00
parent 07e4eb4dfb
commit e0cf10a886

View file

@ -112,13 +112,13 @@ module.exports = Metrics =
gauge : (key, value, sampleRate = 1, opts)->
key = Metrics.buildPromKey(key)
prom.metric('gague', key).set({app: appname, host: hostname, status: opts?.status}, this.sanitizeValue(value))
prom.metric('gauge', key).set({app: appname, host: hostname, status: opts?.status}, this.sanitizeValue(value))
if process.env['DEBUG_METRICS']
console.log("doing gauge", key, opts)
globalGauge: (key, value, sampleRate = 1, opts)->
key = Metrics.buildPromKey(key)
prom.metric('gague', key).set({app: appname, status: opts?.status},this.sanitizeValue(value))
prom.metric('gauge', key).set({app: appname, status: opts?.status},this.sanitizeValue(value))
mongodb: require "./mongodb"
http: require "./http"