Merge pull request #29 from overleaf/em-fix-timing-metrics

Fix HTTP request timing metrics
This commit is contained in:
Eric Mc Sween 2020-03-25 09:53:07 -04:00 committed by GitHub
commit 8ab79dd1ce

View file

@ -11,7 +11,7 @@ module.exports.monitor = (logger) ->
res.end = () ->
end.apply(this, arguments)
responseTime = process.hrtime(startTime)
responseTimeMs = Math.round(responseTime[0] * 1000 + responseTime[1] / 1000)
responseTimeMs = Math.round(responseTime[0] * 1000 + responseTime[1] / 1000000)
requestSize = parseInt(req.headers["content-length"], 10)
if req.route?.path?
routePath = req.route.path.toString().replace(/\//g, '_').replace(/\:/g, '').slice(1)