mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Create metrics module
This commit is contained in:
commit
42b500263a
5 changed files with 87 additions and 0 deletions
1
libraries/metrics/.gitignore
vendored
Normal file
1
libraries/metrics/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
node_modules
|
2
libraries/metrics/index.js
Normal file
2
libraries/metrics/index.js
Normal file
|
@ -0,0 +1,2 @@
|
|||
require("coffee-script")
|
||||
module.exports = require('./metrics');
|
34
libraries/metrics/metrics.coffee
Normal file
34
libraries/metrics/metrics.coffee
Normal file
|
@ -0,0 +1,34 @@
|
|||
StatsD = require('lynx')
|
||||
statsd = new StatsD('localhost', 8125, {on_error:->})
|
||||
|
||||
name = "unknown"
|
||||
|
||||
buildKey = (key)-> "#{name}.#{process.env.NODE_ENV or "development"}.#{key}"
|
||||
|
||||
module.exports =
|
||||
initialize: (options = {}) ->
|
||||
name = options.name
|
||||
|
||||
set : (key, value, sampleRate = 1)->
|
||||
statsd.set buildKey(key), value, sampleRate
|
||||
|
||||
inc : (key, sampleRate = 1)->
|
||||
statsd.increment buildKey(key), sampleRate
|
||||
|
||||
timing: (key, timeSpan, sampleRate)->
|
||||
statsd.timing(key, timeSpan, sampleRate)
|
||||
|
||||
Timer : class
|
||||
constructor :(key, sampleRate = 1)->
|
||||
this.start = new Date()
|
||||
this.key = buildKey(key)
|
||||
this.sampleRate = sampleRate
|
||||
done:->
|
||||
timeSpan = new Date - this.start
|
||||
statsd.timing(this.key, timeSpan, this.sampleRate)
|
||||
|
||||
gauge : (key, value, sampleRate = 1)->
|
||||
statsd.gauge key, value, sampleRate
|
||||
|
||||
mongodb: require "./mongodb"
|
||||
|
40
libraries/metrics/mongodb.coffee
Normal file
40
libraries/metrics/mongodb.coffee
Normal file
|
@ -0,0 +1,40 @@
|
|||
_ = require("underscore")
|
||||
|
||||
module.exports =
|
||||
monitor: (mongodb_require_path, logger) ->
|
||||
Db = require("#{mongodb_require_path}/lib/mongodb/db").Db
|
||||
|
||||
Metrics = require("./metrics")
|
||||
|
||||
monitorMethod = (base, method, type) ->
|
||||
_method = base[method]
|
||||
|
||||
base[method] = (db_command, options, callback) ->
|
||||
if (typeof callback == 'undefined')
|
||||
callback = options
|
||||
options = {}
|
||||
callback = () ->
|
||||
|
||||
key = "mongo-requests.#{type}"
|
||||
if db_command.query?
|
||||
query = Object.keys(db_command.query).sort().join("_")
|
||||
key += "." + query
|
||||
|
||||
Metrics.inc key
|
||||
timer = new Metrics.Timer(key)
|
||||
start = new Date()
|
||||
_method.call this, db_command, options, () ->
|
||||
timer.done()
|
||||
time = new Date() - start
|
||||
logger.log
|
||||
query: db_command.query
|
||||
type: type
|
||||
collection: db_command.collectionName
|
||||
"response-time": new Date() - start
|
||||
"mongo request"
|
||||
callback.apply this, arguments
|
||||
|
||||
monitorMethod(Db.prototype, "_executeQueryCommand", "query")
|
||||
monitorMethod(Db.prototype, "_executeRemoveCommand", "remove")
|
||||
monitorMethod(Db.prototype, "_executeInsertCommand", "insert")
|
||||
monitorMethod(Db.prototype, "_executeUpdateCommand", "update")
|
10
libraries/metrics/package.json
Normal file
10
libraries/metrics/package.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"name": "metrics-sharelatex",
|
||||
"version": "0.0.0",
|
||||
"description": "A drop-in metrics and monitoring module for node.js apps",
|
||||
"dependencies": {
|
||||
"lynx": "~0.1.1",
|
||||
"coffee-script": "~1.7.1",
|
||||
"underscore": "~1.6.0"
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue