forked from uber-archive/node-statsd-client
-
Notifications
You must be signed in to change notification settings - Fork 2
/
null.js
124 lines (104 loc) · 2.42 KB
/
null.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
'use strict';
var RingBuffer = require('ringbufferjs');
module.exports = NullStatsd;
function NullStatsd(capacity) {
if (!(this instanceof NullStatsd)) {
return new NullStatsd(capacity);
}
this._buffer = new RingBuffer(capacity || 50);
}
function NullStatsdRecord(type, name, value, delta, time) {
this.type = type;
this.name = name;
this.value = value || null;
this.delta = delta || null;
this.time = time || null;
}
var proto = NullStatsd.prototype;
proto._write = function _write(record) {
this._buffer.enq(record);
};
proto.gauge = function gauge(name, value) {
this._write(new NullStatsdRecord('g', name, value));
};
proto.counter = function counter(name, value) {
this._write(new NullStatsdRecord('c', name, null, value));
};
proto.increment = function increment(name, delta) {
this._write(new NullStatsdRecord(
'c',
name,
null,
delta || 1
));
};
proto.decrement = function decrement(name, delta) {
this._write(new NullStatsdRecord(
'c',
name,
null,
(-1 * Math.abs(delta || 1))
));
};
proto.timing = function timing(name, time) {
this._write(new NullStatsdRecord(
'ms',
name,
null,
null,
time
));
};
proto.close = function close() {
for (var i = 0, len = this._buffer.size(); i < len; i++) {
this._buffer.deq();
}
};
proto.immediateGauge = function (name, value, cb) {
this._write(new NullStatsdRecord(
'g',
name,
value
));
process.nextTick(cb);
};
proto.immediateIncrement = function (name, delta, cb) {
this._write(new NullStatsdRecord(
'c',
name,
null,
delta || 1
));
process.nextTick(cb);
};
proto.immediateDecrement = function (name, delta, cb) {
this._write(new NullStatsdRecord(
'c',
name,
null,
(-1 * Math.abs(delta || 1))
));
process.nextTick(cb);
};
proto.immediateCounter = function (name, value, cb) {
this._write(new NullStatsdRecord(
'c',
name,
null,
value
));
process.nextTick(cb);
};
proto.immediateTiming = function (name, time, cb) {
this._write(new NullStatsdRecord(
'ms',
name,
null,
null,
time
));
process.nextTick(cb);
};
proto.getChildClient = function() {
return new NullStatsd(this._buffer.capacity());
};