-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathNonBlockingStatsDClientBuilder.java
More file actions
300 lines (251 loc) · 10.3 KB
/
Copy pathNonBlockingStatsDClientBuilder.java
File metadata and controls
300 lines (251 loc) · 10.3 KB
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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
package com.timgroup.statsd;
import jnr.unixsocket.UnixSocketAddress;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.net.SocketAddress;
import java.net.UnknownHostException;
import java.util.concurrent.Callable;
public class NonBlockingStatsDClientBuilder {
/**
* 1400 chosen as default here so that the number of bytes in a message plus the number of bytes required
* for additional udp headers should be under the 1500 Maximum Transmission Unit for ethernet.
* See https://github.com/DataDog/java-dogstatsd-client/pull/17 for discussion.
*/
public int maxPacketSizeBytes = 0;
public int port = NonBlockingStatsDClient.DEFAULT_DOGSTATSD_PORT;
public int telemetryPort = NonBlockingStatsDClient.DEFAULT_DOGSTATSD_PORT;
public int queueSize = NonBlockingStatsDClient.DEFAULT_QUEUE_SIZE;
public int timeout = NonBlockingStatsDClient.SOCKET_TIMEOUT_MS;
public int bufferPoolSize = NonBlockingStatsDClient.DEFAULT_POOL_SIZE;
public int socketBufferSize = NonBlockingStatsDClient.SOCKET_BUFFER_BYTES;
public int processorWorkers = NonBlockingStatsDClient.DEFAULT_PROCESSOR_WORKERS;
public int senderWorkers = NonBlockingStatsDClient.DEFAULT_SENDER_WORKERS;
public boolean blocking = NonBlockingStatsDClient.DEFAULT_BLOCKING;
public int lockShardGrain = NonBlockingStatsDClient.DEFAULT_LOCK_SHARD_GRAIN;
public boolean enableTelemetry = NonBlockingStatsDClient.DEFAULT_ENABLE_TELEMETRY;
public boolean enableAggregation = NonBlockingStatsDClient.DEFAULT_ENABLE_AGGREGATION;
public int telemetryFlushInterval = Telemetry.DEFAULT_FLUSH_INTERVAL;
public int aggregationFlushInterval = StatsDAggregator.DEFAULT_FLUSH_INTERVAL;
public int aggregationShards = StatsDAggregator.DEFAULT_SHARDS;
public Callable<SocketAddress> addressLookup;
public Callable<SocketAddress> telemetryAddressLookup;
public String hostname;
public String telemetryHostname;
public String prefix;
public String entityID;
public String[] constantTags;
public StatsDClientErrorHandler errorHandler;
public NonBlockingStatsDClientBuilder() { }
public NonBlockingStatsDClientBuilder port(int val) {
port = val;
return this;
}
public NonBlockingStatsDClientBuilder telemetryPort(int val) {
telemetryPort = val;
return this;
}
public NonBlockingStatsDClientBuilder queueSize(int val) {
queueSize = val;
return this;
}
public NonBlockingStatsDClientBuilder timeout(int val) {
timeout = val;
return this;
}
public NonBlockingStatsDClientBuilder bufferPoolSize(int val) {
bufferPoolSize = val;
return this;
}
public NonBlockingStatsDClientBuilder socketBufferSize(int val) {
socketBufferSize = val;
return this;
}
public NonBlockingStatsDClientBuilder maxPacketSizeBytes(int val) {
maxPacketSizeBytes = val;
return this;
}
public NonBlockingStatsDClientBuilder processorWorkers(int val) {
processorWorkers = val;
return this;
}
public NonBlockingStatsDClientBuilder senderWorkers(int val) {
senderWorkers = val;
return this;
}
public NonBlockingStatsDClientBuilder lockShardGrain(int val) {
lockShardGrain = val;
return this;
}
public NonBlockingStatsDClientBuilder blocking(boolean val) {
blocking = val;
return this;
}
public NonBlockingStatsDClientBuilder addressLookup(Callable<SocketAddress> val) {
addressLookup = val;
return this;
}
public NonBlockingStatsDClientBuilder telemetryAddressLookup(Callable<SocketAddress> val) {
telemetryAddressLookup = val;
return this;
}
public NonBlockingStatsDClientBuilder hostname(String val) {
hostname = val;
return this;
}
public NonBlockingStatsDClientBuilder telemetryHostname(String val) {
telemetryHostname = val;
return this;
}
public NonBlockingStatsDClientBuilder prefix(String val) {
prefix = val;
return this;
}
public NonBlockingStatsDClientBuilder entityID(String val) {
entityID = val;
return this;
}
public NonBlockingStatsDClientBuilder constantTags(String... val) {
constantTags = val;
return this;
}
public NonBlockingStatsDClientBuilder errorHandler(StatsDClientErrorHandler val) {
errorHandler = val;
return this;
}
public NonBlockingStatsDClientBuilder enableTelemetry(boolean val) {
enableTelemetry = val;
return this;
}
public NonBlockingStatsDClientBuilder enableAggregation(boolean val) {
enableAggregation = val;
return this;
}
public NonBlockingStatsDClientBuilder telemetryFlushInterval(int val) {
telemetryFlushInterval = val;
return this;
}
public NonBlockingStatsDClientBuilder aggregationFlushInterval(int val) {
aggregationFlushInterval = val;
return this;
}
public NonBlockingStatsDClientBuilder aggregationShards(int val) {
aggregationShards = val;
return this;
}
/**
* NonBlockingStatsDClient factory method.
* @return the built NonBlockingStatsDClient.
*/
public NonBlockingStatsDClient build() throws StatsDClientException {
int packetSize = maxPacketSizeBytes;
Callable<SocketAddress> lookup = addressLookup;
Callable<SocketAddress> telemetryLookup = telemetryAddressLookup;
if (lookup == null) {
lookup = staticStatsDAddressResolution(hostname, port);
}
if (packetSize == 0) {
packetSize = (port == 0) ? NonBlockingStatsDClient.DEFAULT_UDS_MAX_PACKET_SIZE_BYTES :
NonBlockingStatsDClient.DEFAULT_UDP_MAX_PACKET_SIZE_BYTES;
}
if (telemetryLookup == null) {
if (telemetryHostname == null) {
telemetryLookup = lookup;
} else {
telemetryLookup = staticStatsDAddressResolution(telemetryHostname, telemetryPort);
}
}
return new NonBlockingStatsDClient(prefix, queueSize, constantTags, errorHandler,
lookup, telemetryLookup, timeout, socketBufferSize, packetSize,
entityID, bufferPoolSize, processorWorkers, senderWorkers, lockShardGrain,
blocking, enableTelemetry, telemetryFlushInterval,
(enableAggregation ? aggregationFlushInterval : 0), aggregationShards);
}
/**
* Create dynamic lookup for the given host name and port.
*
* @param hostname
* the host name of the targeted StatsD server. If the environment variable
* "DD_AGENT_HOST" is set, this parameter is overwritten by the environment
* variable value.
* @param port
* the port of the targeted StatsD server. If the environment variable
* "DD_DOGSTATSD_PORT" is set, this parameter is overwritten by the environment
* variable value.
* @return a function to perform the lookup
*/
public static Callable<SocketAddress> volatileAddressResolution(final String hostname, final int port) {
return new Callable<SocketAddress>() {
@Override public SocketAddress call() throws UnknownHostException {
if (port == 0) { // Hostname is a file path to the socket
return new UnixSocketAddress(hostname);
} else {
return new InetSocketAddress(InetAddress.getByName(hostname), port);
}
}
};
}
/**
* Lookup the address for the given host name and cache the result.
*
* @param hostname the host name of the targeted StatsD server
* @param port the port of the targeted StatsD server
* @return a function that cached the result of the lookup
* @throws Exception if the lookup fails, i.e. {@link UnknownHostException}
*/
public static Callable<SocketAddress> staticAddressResolution(final String hostname, final int port)
throws Exception {
final SocketAddress address = volatileAddressResolution(hostname, port).call();
return new Callable<SocketAddress>() {
@Override public SocketAddress call() {
return address;
}
};
}
protected static Callable<SocketAddress> staticStatsDAddressResolution(String hostname, int port)
throws StatsDClientException {
try {
if (hostname == null) {
hostname = getHostnameFromEnvVar();
port = getPortFromEnvVar(port);
}
return staticAddressResolution(hostname, port);
} catch (final Exception e) {
throw new StatsDClientException("Failed to lookup StatsD host", e);
}
}
/**
* Retrieves host name from the environment variable "DD_AGENT_HOST".
*
* @return host name from the environment variable "DD_AGENT_HOST"
*
* @throws StatsDClientException if the environment variable is not set
*/
private static String getHostnameFromEnvVar() {
final String hostname = System.getenv(NonBlockingStatsDClient.DD_AGENT_HOST_ENV_VAR);
if (hostname == null) {
throw new StatsDClientException("Failed to retrieve agent hostname from environment variable", null);
}
return hostname;
}
/**
* Retrieves dogstatsd port from the environment variable "DD_DOGSTATSD_PORT".
*
* @return dogstatsd port from the environment variable "DD_DOGSTATSD_PORT"
*
* @throws StatsDClientException if the environment variable is an integer
*/
private static int getPortFromEnvVar(final int defaultPort) {
final String statsDPortString = System.getenv(NonBlockingStatsDClient.DD_DOGSTATSD_PORT_ENV_VAR);
if (statsDPortString == null) {
return defaultPort;
} else {
try {
final int statsDPort = Integer.parseInt(statsDPortString);
return statsDPort;
} catch (final NumberFormatException e) {
throw new StatsDClientException("Failed to parse "
+ NonBlockingStatsDClient.DD_DOGSTATSD_PORT_ENV_VAR + "environment variable value", e);
}
}
}
}