Windshaft-cartodb/lib/stats/profiler-proxy.js

60 lines
1.3 KiB
JavaScript
Raw Normal View History

'use strict';
var Profiler = require('step-profiler');
/**
* Proxy to encapsulate node-step-profiler module so there is no need to check if there is an instance
*/
2019-10-22 01:07:24 +08:00
function ProfilerProxy (opts) {
this.profile = !!opts.profile;
this.profiler = null;
2019-10-22 01:07:24 +08:00
if (opts.profile) {
this.profiler = new Profiler({ statsd_client: opts.statsd_client });
}
}
2019-10-22 01:07:24 +08:00
ProfilerProxy.prototype.done = function (what) {
if (this.profile) {
this.profiler.done(what);
}
};
2019-10-22 01:07:24 +08:00
ProfilerProxy.prototype.end = function () {
if (this.profile) {
this.profiler.end();
}
};
2019-10-22 01:07:24 +08:00
ProfilerProxy.prototype.start = function (what) {
if (this.profile) {
this.profiler.start(what);
}
};
2019-10-22 01:07:24 +08:00
ProfilerProxy.prototype.add = function (what) {
if (this.profile) {
this.profiler.add(what || {});
}
};
2019-10-22 01:07:24 +08:00
ProfilerProxy.prototype.sendStats = function () {
if (this.profile) {
this.profiler.sendStats();
}
};
2019-10-22 01:07:24 +08:00
ProfilerProxy.prototype.toString = function () {
return this.profile ? this.profiler.toString() : '';
};
2019-10-22 01:07:24 +08:00
ProfilerProxy.prototype.toJSONString = function () {
return this.profile ? this.profiler.toJSONString() : '{}';
};
ProfilerProxy.prototype.toJSON = function () {
return this.profile ? JSON.parse(this.profiler.toJSONString()) : {};
};
module.exports = ProfilerProxy;