mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
22 lines
605 B
CoffeeScript
22 lines
605 B
CoffeeScript
StatsD = require('lynx')
|
|
statsd = new StatsD('localhost', 8125, {on_error:->})
|
|
|
|
buildKey = (key)-> "chat.#{process.env.NODE_ENV}.#{key}"
|
|
|
|
module.exports =
|
|
set : (key, value, sampleRate = 1)->
|
|
statsd.set buildKey(key), value, sampleRate
|
|
|
|
inc : (key, sampleRate = 1)->
|
|
statsd.increment buildKey(key), sampleRate
|
|
|
|
Timer : class
|
|
constructor :(key, sampleRate = 1)->
|
|
this.start = new Date()
|
|
this.key = buildKey(key)
|
|
done:->
|
|
timeSpan = new Date - this.start
|
|
statsd.timing(this.key, timeSpan, this.sampleRate)
|
|
|
|
gauge : (key, value, sampleRate = 1)->
|
|
statsd.gauge key, value, sampleRate
|