2018-10-23 23:45:42 +08:00
|
|
|
'use strict';
|
|
|
|
|
2018-03-28 18:45:03 +08:00
|
|
|
module.exports = function initProfiler (isTemplateInstantiation) {
|
|
|
|
const operation = isTemplateInstantiation ? 'instance_template' : 'createmap';
|
|
|
|
|
|
|
|
return function initProfilerMiddleware (req, res, next) {
|
|
|
|
req.profiler.start(`windshaft-cartodb.${operation}_${req.method.toLowerCase()}`);
|
|
|
|
req.profiler.done(`${operation}.initProfilerMiddleware`);
|
|
|
|
next();
|
|
|
|
};
|
|
|
|
};
|