Send pubsub metrics once the response has finished

remotes/origin/node-12
Daniel García Aubert 4 years ago
parent 3cec6b5a90
commit 42dc2915ea

@ -5,15 +5,19 @@ const MAX_LENGTH = 100;
function pubSubMetrics (pubSubMetricsBackend) {
if (!pubSubMetricsBackend.isEnabled()) {
return function pubSubMetricsDisabledMiddleware (req, res, next) { next(); };
return function pubSubMetricsDisabledMiddleware (req, res, next) {
next();
};
}
return function pubSubMetricsMiddleware (req, res, next) {
const data = getEventData(req, res);
res.on('finish', () => {
const { event, attributes } = getEventData(req, res);
if (data.event) {
pubSubMetricsBackend.sendEvent(data.event, data.attributes);
}
if (event) {
pubSubMetricsBackend.sendEvent(event, attributes);
}
});
return next();
};

Loading…
Cancel
Save