forked from statsd/statsd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
proxy.js
146 lines (130 loc) · 4.52 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
var dgram = require('dgram')
, net = require('net')
, events = require('events')
, logger = require('./lib/logger')
, hashring = require('hashring')
, configlib = require('./lib/config');
var packet = new events.EventEmitter();
var node_status = [];
var node_ring = {};
var config;
var l; // logger
configlib.configFile(process.argv[2], function (conf, oldConfig) {
config = conf;
var udp_version = config.udp_version
, nodes = config.nodes;
l = new logger.Logger(config.log || {});
//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
});
// Do an initial rount of health checks prior to starting up the server
doHealthChecks();
// Setup the udp listener
var server = dgram.createSocket(udp_version, function (msg, rinfo) {
// Convert the raw packet to a string (defaults to UTF8 encoding)
var packet_data = msg.toString();
// 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) {
var current_metric = metrics[midx];
var bits = current_metric.split(':');
var 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
var current_metric = packet_data;
var bits = current_metric.split(':');
var 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) {
l.log('Warning: No backend statsd nodes available!');
} 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]);
}
});
// Bind the listening udp server to the configured port and host
server.bind(config.port, config.host || undefined);
// 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) {
l.log('Removing node ' + node_id + ' from the ring.');
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;
l.log('Adding node ' + node_id + ' to the ring.');
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) {
l.log('Removing node ' + node_id + ' from the ring.');
ring.remove(node_id);
}
} else {
l.log('Error during healthcheck on node ' + node_id + ' with ' + e.code);
}
});
}
});