forked from statsd/statsd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
proxy.js
276 lines (242 loc) · 8.17 KB
/
proxy.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
/*jshint node:true, laxcomma:true */
var dgram = require('dgram')
, net = require('net')
, events = require('events')
, logger = require('./lib/logger')
, hashring = require('hashring')
, cluster = require('cluster')
, helpers = require('./lib/helpers')
, mgmt_server = require('./lib/mgmt_server')
, configlib = require('./lib/config');
var packet = new events.EventEmitter();
var startup_time = Math.round(new Date().getTime() / 1000);
var node_status = [];
var workers = []; // Keep track of all forked childs
var node_ring = {};
var servers_loaded;
var config;
var l; // logger
configlib.configFile(process.argv[2], function (conf, oldConfig) {
config = conf;
var udp_version = config.address_ipv6 ? 'udp6' : 'udp4';
var nodes = config.nodes;
l = new logger.Logger(config.log || {});
var forkCount = config.forkCount;
if (forkCount === 'auto') {
forkCount = require('os').cpus().length;
}
var logPrefix = "[" + process.pid + "] ";
var log = function(msg, type) {
l.log(logPrefix + msg, type);
};
var healthStatus = configlib.healthStatus || 'up';
var broadcastMsg = function(msg) {
for (var i = 0; i < workers.length; i++) {
workers[i].send(msg);
}
};
if (forkCount > 1) {
if (cluster.isMaster) {
var worker;
logPrefix += "[master] ";
log("forking " + forkCount + " childs", "INFO");
for (var i = 0; i < forkCount; i++) {
worker = cluster.fork();
worker.on('message', broadcastMsg);
}
cluster.on('online', function(worker) {
log('worker ' + worker.process.pid + ' is online', 'INFO');
workers.push(worker);
});
cluster.on('exit', function(worker, code, signal) {
log('worker ' + worker.process.pid + ' died with exit code:' + code + " restarting", 'ERROR');
// Remove died worker from the array
for (var i = 0; i < workers.length; i++) {
if (workers[i].process.pid == worker.process.pid) {
workers.splice(i, 1);
}
}
worker = cluster.fork();
worker.on('message', broadcastMsg);
});
return;
} else {
process.on('message', function(msg) {
if (msg.healthStatus) {
healthStatus = msg.healthStatus;
}
});
}
}
//load the node_ring object with the available nodes and a weight of 100
// weight is currently arbitrary but the same for all
nodes.forEach(function(element, index, array) {
node_ring[element.host + ':' + element.port] = 100;
});
var ring = new hashring(
node_ring, 'md5', {
'max cache size': config.cacheSize || 10000,
//We don't want duplicate keys sent so replicas set to 0
'replicas': 0
});
if (!servers_loaded) {
// Do an initial rount of health checks prior to starting up the server
doHealthChecks();
// Setup the udp listener
var server_config = config.server || './servers/udp';
var servermod = require(server_config);
var server = servermod.start(config, function (msg, rinfo) {
// Convert the raw packet to a string (defaults to UTF8 encoding)
var packet_data = msg.toString();
var current_metric
, bits
, key;
// If the packet contains a \n then it contains multiple metrics
if (packet_data.indexOf("\n") > -1) {
var metrics;
metrics = packet_data.split("\n");
// Loop through the metrics and split on : to get mertric name for hashing
for (var midx in metrics) {
current_metric = metrics[midx];
bits = current_metric.split(':');
key = bits.shift();
if (current_metric !== '') {
var new_msg = new Buffer(current_metric);
packet.emit('send', key, new_msg);
}
}
} else {
// metrics needs to be an array to fake it for single metric packets
current_metric = packet_data;
bits = current_metric.split(':');
key = bits.shift();
if (current_metric !== '') {
packet.emit('send', key, msg);
}
}
});
var client = dgram.createSocket(udp_version);
// Listen for the send message, and process the metric key and msg
packet.on('send', function(key, msg) {
// retreives the destination for this key
var statsd_host = ring.get(key);
// break the retreived host to pass to the send function
if (statsd_host === undefined) {
log('Warning: No backend statsd nodes available!', 'WARNING');
} else {
var host_config = statsd_host.split(':');
// Send the mesg to the backend
client.send(msg, 0, msg.length, host_config[1], host_config[0]);
}
});
mgmt_server.start(
config,
function(cmd, parameters, stream) {
switch(cmd) {
case "help":
stream.write("Commands: config, health, status, quit\n\n");
break;
case "config":
helpers.writeConfig(config, stream);
break;
case "health":
if (parameters.length > 0) {
var cmdaction = parameters[0].toLowerCase();
if (cmdaction === 'up') {
healthStatus = 'up';
if (forkCount > 0) {
// Notify the other forks
process.send({ healthStatus: healthStatus });
}
} else if (cmdaction === 'down') {
healthStatus = 'down';
if (forkCount > 0) {
// Notify the other forks
process.send({ healthStatus: healthStatus });
}
}
}
stream.write("health: " + healthStatus + "\n");
break;
case "status":
var now = Math.round(new Date().getTime() / 1000);
var uptime = now - startup_time;
stream.write("uptime: " + uptime + "\n");
stream.write("nodes: ");
ring.servers.forEach(function(server, index, array) {
stream.write(server.string + " ");
});
stream.write("\n");
break;
case "quit":
stream.end();
break;
default:
stream.write("ERROR\n");
break;
}
},
function(err, stream) {
log("MGMT: Caught " + err + ", Moving on", "WARNING");
}
);
servers_loaded = true;
log("server is up", "INFO");
// Set the interval for healthchecks
setInterval(doHealthChecks, config.checkInterval || 10000);
}
// Perform health check on all nodes
function doHealthChecks() {
nodes.forEach(function(element, index, array) {
healthcheck(element);
});
}
// Perform health check on node
function healthcheck(node) {
var node_id = node.host + ':' + node.port;
var client = net.connect({port: node.adminport, host: node.host},
function() {
client.write('health\r\n');
});
client.on('data', function(data) {
var health_status = data.toString();
client.end();
if (health_status.indexOf('up') < 0) {
if (node_status[node_id] === undefined) {
node_status[node_id] = 1;
} else {
node_status[node_id]++;
}
if (node_status[node_id] < 2) {
log('Removing node ' + node_id + ' from the ring.', 'WARNING');
ring.remove(node_id);
}
} else {
if (node_status[node_id] !== undefined) {
if (node_status[node_id] > 0) {
var new_server = {};
new_server[node_id] = 100;
log('Adding node ' + node_id + ' to the ring.', 'WARNING');
ring.add(new_server);
}
}
node_status[node_id] = 0;
}
});
client.on('error', function(e) {
if (e.code == 'ECONNREFUSED') {
if (node_status[node_id] === undefined) {
node_status[node_id] = 1;
} else {
node_status[node_id]++;
}
if (node_status[node_id] < 2) {
log('Removing node ' + node_id + ' from the ring.', 'WARNING');
ring.remove(node_id);
}
} else {
log('Error during healthcheck on node ' + node_id + ' with ' + e.code, 'ERROR');
}
});
}
});