mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
56 lines
1.3 KiB
CoffeeScript
56 lines
1.3 KiB
CoffeeScript
StatsD = require('lynx')
|
|
statsd = new StatsD('localhost', 8125, {on_error:->})
|
|
|
|
name = "unknown"
|
|
hostname = require('os').hostname()
|
|
|
|
buildKey = (key)-> "#{name}.#{hostname}.#{key}"
|
|
|
|
destructors = []
|
|
|
|
require "./uv_threadpool_size"
|
|
|
|
module.exports = Metrics =
|
|
initialize: (_name) ->
|
|
name = _name
|
|
|
|
registerDestructor: (func) ->
|
|
destructors.push func
|
|
|
|
set : (key, value, sampleRate = 1)->
|
|
statsd.set buildKey(key), value, sampleRate
|
|
|
|
inc : (key, sampleRate = 1)->
|
|
statsd.increment buildKey(key), sampleRate
|
|
|
|
count : (key, count, sampleRate = 1)->
|
|
statsd.count buildKey(key), count, sampleRate
|
|
|
|
timing: (key, timeSpan, sampleRate)->
|
|
statsd.timing(buildKey(key), timeSpan, sampleRate)
|
|
|
|
Timer : class
|
|
constructor :(key, sampleRate = 1)->
|
|
this.start = new Date()
|
|
this.key = key
|
|
this.sampleRate = sampleRate
|
|
done:->
|
|
timeSpan = new Date - this.start
|
|
statsd.timing(buildKey(this.key), timeSpan, this.sampleRate)
|
|
return timeSpan
|
|
|
|
gauge : (key, value, sampleRate = 1)->
|
|
statsd.gauge buildKey(key), value, sampleRate
|
|
|
|
mongodb: require "./mongodb"
|
|
http: require "./http"
|
|
open_sockets: require "./open_sockets"
|
|
event_loop: require "./event_loop"
|
|
memory: require "./memory"
|
|
|
|
timeAsyncMethod: require('./timeAsyncMethod')
|
|
|
|
close: () ->
|
|
for func in destructors
|
|
func()
|
|
statsd.close()
|