diff --git a/lib/api/middlewares/profiler.js b/lib/api/middlewares/profiler.js index c505a77d..9d2b573b 100644 --- a/lib/api/middlewares/profiler.js +++ b/lib/api/middlewares/profiler.js @@ -16,10 +16,10 @@ module.exports = function profiler (options) { profile: enabled }); - req.profiler.start(prefix); + req.profiler.start([prefix, 'response'].join('.')); res.on('finish', () => { - req.profiler.done('response'); + req.profiler.end(); logger.info({ stats: req.profiler.toJSON() }); try {