forked from mikejihbe/metrics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreport.js
46 lines (39 loc) · 1.17 KB
/
report.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/**
* trackedMetrics is an object with eventTypes as keys and metrics object as values.
*/
var _evtparse = function (eventName){
var namespaces = eventName.split('.')
, name = namespaces.pop()
, namespace = namespaces.join('.');
return {
ns: namespace
, name: name
}
}
var Report = module.exports = function (trackedMetrics){
this.trackedMetrics = trackedMetrics || {};
}
Report.prototype.addMetric = function(eventName, metric) {
var parts = _evtparse(eventName);
if (!this.trackedMetrics[parts.ns]) {
this.trackedMetrics[parts.ns] = {};
}
if(!this.trackedMetrics[parts.ns][parts.name]) {
this.trackedMetrics[parts.ns][parts.name] = metric;
}
}
Report.prototype.getMetric = function (eventName){
var parts = _evtparse(eventName);
if (!this.trackedMetrics[parts.ns]){ return; }
return this.trackedMetrics[parts.ns][parts.name];
}
Report.prototype.summary = function (){
var metricsObj = {};
for (var namespace in this.trackedMetrics) {
metricsObj[namespace] = {};
for (var name in this.trackedMetrics[namespace]) {
metricsObj[namespace][name] = this.trackedMetrics[namespace][name].printObj();
}
}
return metricsObj;
}