non tested promethius counters added

This commit is contained in:
Henry Oswald 2018-10-16 16:47:12 +01:00
parent 31e97f92d5
commit 4b075db038
2 changed files with 17 additions and 1 deletions

View file

@ -1,6 +1,9 @@
StatsD = require('lynx') StatsD = require('lynx')
statsd = new StatsD(process.env["STATSD_HOST"] or "localhost", 8125, {on_error:->}) statsd = new StatsD(process.env["STATSD_HOST"] or "localhost", 8125, {on_error:->})
prom = require('prom-client')
collectDefaultMetrics = client.collectDefaultMetrics
name = "unknown" name = "unknown"
hostname = require('os').hostname() hostname = require('os').hostname()
@ -14,6 +17,8 @@ require "./uv_threadpool_size"
module.exports = Metrics = module.exports = Metrics =
initialize: (_name) -> initialize: (_name) ->
name = _name name = _name
collectDefaultMetrics({ timeout: 5000, prefix: name })
registerDestructor: (func) -> registerDestructor: (func) ->
destructors.push func destructors.push func
@ -23,9 +28,19 @@ module.exports = Metrics =
inc : (key, sampleRate = 1)-> inc : (key, sampleRate = 1)->
statsd.increment buildKey(key), sampleRate statsd.increment buildKey(key), sampleRate
counter = new prom.Counter({
name: key,
help: key #https://prometheus.io/docs/instrumenting/writing_exporters/#help-strings this is probably wrong
});
counter.inc()
count : (key, count, sampleRate = 1)-> count : (key, count, sampleRate = 1)->
statsd.count buildKey(key), count, sampleRate statsd.count buildKey(key), count, sampleRate
counter = new prom.Counter({
name: key,
help: key #https://prometheus.io/docs/instrumenting/writing_exporters/#help-strings this is probably wrong
});
counter.inc(count)
timing: (key, timeSpan, sampleRate)-> timing: (key, timeSpan, sampleRate)->
statsd.timing(buildKey(key), timeSpan, sampleRate) statsd.timing(buildKey(key), timeSpan, sampleRate)

View file

@ -7,8 +7,9 @@
"url": "https://github.com/sharelatex/metrics-sharelatex.git" "url": "https://github.com/sharelatex/metrics-sharelatex.git"
}, },
"dependencies": { "dependencies": {
"lynx": "~0.1.1",
"coffee-script": "1.6.0", "coffee-script": "1.6.0",
"lynx": "~0.1.1",
"prom-client": "^11.1.3",
"underscore": "~1.6.0" "underscore": "~1.6.0"
}, },
"devDependencies": { "devDependencies": {