mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
23 lines
577 B
JavaScript
23 lines
577 B
JavaScript
'use strict';
|
|
|
|
const url = require('url');
|
|
const responseTime = require('response-time');
|
|
const { REQUEST_TIME } = require('../events');
|
|
|
|
module.exports = function(config) {
|
|
return responseTime((req, res, time) => {
|
|
const { statusCode } = res;
|
|
const pathname = req.route
|
|
? url.parse(req.originalUrl).pathname
|
|
: '(hidden)';
|
|
|
|
const timingInfo = {
|
|
path: pathname,
|
|
method: req.method,
|
|
statusCode,
|
|
time,
|
|
};
|
|
config.eventBus.emit(REQUEST_TIME, timingInfo);
|
|
});
|
|
};
|