You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Windshaft-cartodb/lib/stats/timer.js

35 lines
702 B

'use strict';
function Timer () {
this.times = {};
}
module.exports = Timer;
Timer.prototype.start = function (label) {
this.timeIt(label, 'start');
};
Timer.prototype.end = function (label) {
this.timeIt(label, 'end');
};
Timer.prototype.timeIt = function (label, what) {
this.times[label] = this.times[label] || {};
this.times[label][what] = Date.now();
};
Timer.prototype.getTimes = function () {
var self = this;
var times = {};
Object.keys(this.times).forEach(function (label) {
var stat = self.times[label];
if (stat.start && stat.end) {
times[label] = Math.max(0, stat.end - stat.start);
}
});
return times;
};