overleaf/libraries/metrics/metrics.coffee

113 lines
2.8 KiB
CoffeeScript
Raw Normal View History

2014-05-06 11:52:03 -04:00
StatsD = require('lynx')
statsd = new StatsD(process.env["STATSD_HOST"] or "localhost", 8125, {on_error:->})
2014-05-06 11:52:03 -04:00
2018-11-06 06:14:26 -05:00
prom = require('prom-client')
Register = require('prom-client').register
collectDefaultMetrics = prom.collectDefaultMetrics
2014-05-06 11:52:03 -04:00
name = "unknown"
2014-05-07 05:58:52 -04:00
hostname = require('os').hostname()
2014-05-06 11:52:03 -04:00
2014-05-07 05:58:52 -04:00
buildKey = (key)-> "#{name}.#{hostname}.#{key}"
buildGlobalKey = (key)-> "#{name}.global.#{key}"
2014-05-06 11:52:03 -04:00
promMetrics = {}
2018-11-06 09:22:03 -05:00
destructors = []
require "./uv_threadpool_size"
2017-03-15 11:06:54 -04:00
module.exports = Metrics =
2014-05-06 12:33:09 -04:00
initialize: (_name) ->
name = _name
collectDefaultMetrics({ timeout: 5000, prefix: name+"_"})
2014-05-06 11:52:03 -04:00
registerDestructor: (func) ->
destructors.push func
2018-11-06 06:14:26 -05:00
injectMetricsRoute: (app) ->
app.get('/metrics', (req, res) ->
res.set('Content-Type', Register.contentType)
res.end(Register.metrics())
)
2018-11-07 07:44:10 -05:00
sanitizeKey: (key) ->
key.replace /[^a-zA-Z0-9]/g, "_"
sanitizeValue: (value) ->
parseFloat(value)
2014-05-06 11:52:03 -04:00
set : (key, value, sampleRate = 1)->
statsd.set buildKey(key), value, sampleRate
inc : (key, sampleRate = 1)->
statsd.increment buildKey(key), sampleRate
2018-11-07 07:44:10 -05:00
key = this.sanitizeKey(key)
if !promMetrics[key]?
promMetrics[key] = new prom.Counter({
name: "#{name}_#{key}",
2018-11-06 11:15:41 -05:00
help: key,
2018-11-06 09:22:03 -05:00
labelNames: ['name','host']
})
promMetrics[key].inc({name: name, host: hostname})
2014-05-06 11:52:03 -04:00
2016-03-15 09:52:32 -04:00
count : (key, count, sampleRate = 1)->
statsd.count buildKey(key), count, sampleRate
2014-05-06 11:52:03 -04:00
timing: (key, timeSpan, sampleRate)->
2014-05-07 06:08:46 -04:00
statsd.timing(buildKey(key), timeSpan, sampleRate)
2018-11-20 16:42:34 -05:00
if !promMetrics[this.key]
promMetrics[this.key] = new prom.Summary({
name: "#{name}_timer_#{this.key}".replace(/\./g,"_"),
help: key,
maxAgeSeconds: 600,
ageBuckets: 10
})
promMetrics[this.key].observe(timeSpan)
2014-05-06 11:52:03 -04:00
Timer : class
constructor :(key, sampleRate = 1)->
this.start = new Date()
2014-05-07 06:08:46 -04:00
this.key = key
2014-05-06 11:52:03 -04:00
this.sampleRate = sampleRate
2018-11-20 12:20:49 -05:00
2014-05-06 11:52:03 -04:00
done:->
timeSpan = new Date - this.start
2018-11-20 16:42:34 -05:00
Metrics.timing(this.key, timeSpan, this.sampleRate)
return timeSpan
2014-05-06 11:52:03 -04:00
gauge : (key, value, sampleRate = 1)->
2014-05-09 08:54:33 -04:00
statsd.gauge buildKey(key), value, sampleRate
2018-11-07 07:44:10 -05:00
key = this.sanitizeKey(key)
if !promMetrics[key]
promMetrics[key] = new prom.Gauge({
2018-11-20 12:17:02 -05:00
name: "#{name}_#{key}",
2018-11-06 11:15:41 -05:00
help: key,
labelNames: ['name','host']
})
promMetrics[key].set({name: name, host: hostname}, this.sanitizeValue(value))
2014-05-06 11:52:03 -04:00
globalGauge: (key, value, sampleRate = 1)->
statsd.gauge buildGlobalKey(key), value, sampleRate
2018-11-07 07:44:10 -05:00
key = this.sanitizeKey(key)
if !promMetrics[key]
promMetrics[key] = new prom.Gauge({
name: "#{name}_#{key}",
2018-11-06 11:15:41 -05:00
help: key,
labelNames: ['name','host']
})
promMetrics[key].set({name: name},this.sanitizeValue(value))
2014-05-06 11:52:03 -04:00
mongodb: require "./mongodb"
2014-05-07 05:58:52 -04:00
http: require "./http"
2014-05-09 08:30:12 -04:00
open_sockets: require "./open_sockets"
event_loop: require "./event_loop"
2015-08-13 11:13:09 -04:00
memory: require "./memory"
2014-05-06 11:52:03 -04:00
2017-03-15 11:06:54 -04:00
timeAsyncMethod: require('./timeAsyncMethod')
close: () ->
for func in destructors
func()
statsd.close()