overleaf/libraries/metrics/metrics.coffee

137 lines
3.3 KiB
CoffeeScript
Raw Normal View History

2018-11-21 05:30:18 -05:00
traceAgent = require('@google-cloud/trace-agent')
debugAgent = require('@google-cloud/debug-agent')
2018-11-06 06:14:26 -05:00
prom = require('prom-client')
Register = require('prom-client').register
collectDefaultMetrics = prom.collectDefaultMetrics
appname = "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
2018-11-21 05:01:03 -05: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) ->
appname = _name
2018-11-21 05:01:03 -05:00
collectDefaultMetrics({ timeout: 5000, prefix: Metrics.buildPromKey()})
2018-10-16 12:19:21 -04:00
traceAgent.start()
debugAgent.start({
serviceContext: {
allowExpressions: true,
service: appname,
2018-10-16 12:19:21 -04:00
version: '0.0.1'
}
})
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-21 05:01:03 -05:00
buildPromKey: (key = "")->
Metrics.sanitizeKey key
2018-11-21 05:01:03 -05:00
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)->
2018-11-27 06:33:45 -05:00
inc : (key, sampleRate = 1, opts)->
2018-11-21 05:01:03 -05:00
key = Metrics.buildPromKey(key)
if !promMetrics[key]?
promMetrics[key] = new prom.Counter({
2018-11-21 05:01:03 -05:00
name: key,
2018-11-06 11:15:41 -05:00
help: key,
2018-11-27 06:33:45 -05:00
labelNames: ['app','host','status','method']
2018-11-06 09:22:03 -05:00
})
2018-11-27 07:04:50 -05:00
console.log("doing inc", key, opts)
2018-11-27 06:33:45 -05:00
opts.app = appname
opts.host = hostname
promMetrics[key].inc(opts)
2014-05-06 11:52:03 -04:00
2016-03-15 09:52:32 -04:00
count : (key, count, sampleRate = 1)->
2018-11-21 05:28:32 -05:00
key = Metrics.buildPromKey(key)
if !promMetrics[key]?
promMetrics[key] = new prom.Counter({
name: key,
help: key,
labelNames: ['app','host']
2018-11-21 05:28:32 -05:00
})
promMetrics[key].inc({app: appname, host: hostname}, count)
2016-03-15 09:52:32 -04:00
2018-11-23 11:24:31 -05:00
timing: (key, timeSpan, sampleRate, opts = {})->
key = Metrics.sanitizeKey("timer_" + key)
2018-11-21 05:20:33 -05:00
if !promMetrics[key]?
2018-11-21 03:50:33 -05:00
promMetrics[key] = new prom.Summary({
2018-11-21 05:01:03 -05:00
name: key,
2018-11-20 16:42:34 -05:00
help: key,
maxAgeSeconds: 600,
2018-11-23 11:24:31 -05:00
ageBuckets: 10,
labelNames: ['app', 'path', 'status_code', 'method', 'collection', 'query']
2018-11-20 16:42:34 -05:00
})
opts.app = appname
console.log("doing timing", key, opts)
2018-11-23 11:24:31 -05:00
promMetrics[key].observe(opts, timeSpan)
2014-05-06 11:52:03 -04:00
Timer : class
constructor :(key, sampleRate = 1, opts)->
2014-05-06 11:52:03 -04:00
this.start = new Date()
console.log("creating new timer", key)
2018-11-21 05:01:03 -05:00
key = Metrics.sanitizeKey(key)
2014-05-07 06:08:46 -04:00
this.key = key
2014-05-06 11:52:03 -04:00
this.sampleRate = sampleRate
this.opts = opts
2018-11-20 12:20:49 -05:00
2014-05-06 11:52:03 -04:00
done:->
timeSpan = new Date - this.start
Metrics.timing(this.key, timeSpan, this.sampleRate, this.opts)
return timeSpan
2014-05-06 11:52:03 -04:00
gauge : (key, value, sampleRate = 1)->
2018-11-21 05:01:03 -05:00
key = Metrics.buildPromKey(key)
2018-11-21 05:20:33 -05:00
if !promMetrics[key]?
promMetrics[key] = new prom.Gauge({
2018-11-21 05:01:03 -05:00
name: key,
2018-11-06 11:15:41 -05:00
help: key,
2018-11-23 11:24:31 -05:00
labelNames: ['app','host']
2018-11-06 11:15:41 -05:00
})
promMetrics[key].set({app: appname, host: hostname}, this.sanitizeValue(value))
2014-05-06 11:52:03 -04:00
globalGauge: (key, value, sampleRate = 1)->
2018-11-21 05:01:03 -05:00
key = Metrics.buildPromKey(key)
2018-11-21 05:20:33 -05:00
if !promMetrics[key]?
promMetrics[key] = new prom.Gauge({
2018-11-21 05:01:03 -05:00
name: key,
2018-11-06 11:15:41 -05:00
help: key,
2018-11-23 11:24:31 -05:00
labelNames: ['app','host']
2018-11-06 11:15:41 -05:00
})
promMetrics[key].set({app: appname},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()