-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathNonBlockingStatsDClientBuilder.java
More file actions
466 lines (397 loc) · 16.5 KB
/
NonBlockingStatsDClientBuilder.java
File metadata and controls
466 lines (397 loc) · 16.5 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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
package com.timgroup.statsd;
import jnr.constants.platform.Sock;
import jnr.unixsocket.UnixSocketAddress;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.net.SocketAddress;
import java.net.URI;
import java.net.UnknownHostException;
import java.util.concurrent.Callable;
import java.util.concurrent.ThreadFactory;
public class NonBlockingStatsDClientBuilder implements Cloneable {
/**
* 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 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 boolean originDetectionEnabled = NonBlockingStatsDClient.DEFAULT_ENABLE_ORIGIN_DETECTION;
public int connectionTimeout = NonBlockingStatsDClient.SOCKET_CONNECT_TIMEOUT_MS;
public Callable<SocketAddress> addressLookup;
public Callable<SocketAddress> telemetryAddressLookup;
public String hostname;
public String telemetryHostname;
public String namedPipe;
public String prefix;
public String entityID;
public String[] constantTags;
public String containerID;
public StatsDClientErrorHandler errorHandler;
public ThreadFactory threadFactory;
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 connectionTimeout(int val) {
connectionTimeout = 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 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 namedPipe(String val) {
namedPipe = val;
return this;
}
public NonBlockingStatsDClientBuilder address(String address) {
addressLookup = getAddressLookupFromUrl(address);
return this;
}
public NonBlockingStatsDClientBuilder telemetryAddress(String address) {
telemetryAddressLookup = getAddressLookupFromUrl(address);
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;
}
public NonBlockingStatsDClientBuilder threadFactory(ThreadFactory val) {
threadFactory = val;
return this;
}
public NonBlockingStatsDClientBuilder containerID(String val) {
containerID = val;
return this;
}
public NonBlockingStatsDClientBuilder originDetectionEnabled(boolean val) {
originDetectionEnabled = val;
return this;
}
/**
* NonBlockingStatsDClient factory method.
* @return the built NonBlockingStatsDClient.
*/
public NonBlockingStatsDClient build() throws StatsDClientException {
return new NonBlockingStatsDClient(resolve());
}
/**
* {@link DirectStatsDClient} factory method.
*
* <p>It is an experimental extension of {@link StatsDClient} that allows for direct access to some dogstatsd features.
* It is not recommended to use this client in production.
* @return the built DirectStatsDClient.
* @see DirectStatsDClient
*/
public DirectStatsDClient buildDirectStatsDClient() throws StatsDClientException {
return new NonBlockingDirectStatsDClient(resolve());
}
/**
* Creates a copy of this builder with any implicit elements resolved.
* @return the resolved copy of the builder.
*/
protected NonBlockingStatsDClientBuilder resolve() {
NonBlockingStatsDClientBuilder resolved;
try {
resolved = (NonBlockingStatsDClientBuilder) clone();
} catch (CloneNotSupportedException e) {
throw new UnsupportedOperationException("clone");
}
Callable<SocketAddress> lookup = getAddressLookup();
Callable<SocketAddress> telemetryLookup = telemetryAddressLookup;
if (telemetryLookup == null) {
if (telemetryHostname == null) {
telemetryLookup = lookup;
} else {
telemetryLookup = staticAddress(telemetryHostname, telemetryPort);
}
}
resolved.addressLookup = lookup;
resolved.telemetryAddressLookup = telemetryLookup;
return resolved;
}
private Callable<SocketAddress> getAddressLookup() {
// First, use explicit configuration on the builder.
if (addressLookup != null) {
return addressLookup;
}
if (namedPipe != null) {
return staticNamedPipeResolution(namedPipe);
}
if (hostname != null) {
return staticAddress(hostname, port);
}
// Next, try various environment variables.
String url = System.getenv(NonBlockingStatsDClient.DD_DOGSTATSD_URL_ENV_VAR);
if (url != null) {
return getAddressLookupFromUrl(url);
}
String namedPipeFromEnv = System.getenv(NonBlockingStatsDClient.DD_NAMED_PIPE_ENV_VAR);
if (namedPipeFromEnv != null) {
return staticNamedPipeResolution(namedPipeFromEnv);
}
String hostFromEnv = getHostnameFromEnvVar();
int portFromEnv = getPortFromEnvVar(port);
return staticAddress(hostFromEnv, portFromEnv);
}
private Callable<SocketAddress> getAddressLookupFromUrl(String url) {
if (NamedPipeSocketAddress.isNamedPipe(url)) {
return staticNamedPipeResolution(url);
}
URI parsed;
try {
parsed = new URI(url);
} catch (Exception e) {
return null;
}
if (parsed.getScheme().equals("udp")) {
String uriHost = parsed.getHost();
int uriPort = parsed.getPort();
if (uriPort < 0) {
uriPort = port;
}
return staticAddress(uriHost, uriPort);
}
if (parsed.getScheme().startsWith("unix")) {
String uriPath = parsed.getPath();
return staticUnixResolution(
uriPath,
UnixSocketAddressWithTransport.TransportType.fromScheme(parsed.getScheme())
);
}
return null;
}
/**
* Create dynamic lookup for the given host name and port.
*
* @param hostname
* the host name of the targeted StatsD server.
* @param port
* the port of the targeted StatsD server.
* @return a function to perform the lookup
*/
public static Callable<SocketAddress> volatileAddressResolution(final String hostname, final int port) {
if (port == 0) {
return new Callable<SocketAddress>() {
@Override public SocketAddress call() throws UnknownHostException {
if (VersionUtils.hasNativeUdsSupport()) {
try {
Class<?> udsAddressClass = Class.forName("java.net.UnixDomainSocketAddress");
SocketAddress udsAddress = (SocketAddress)
udsAddressClass.getMethod("of", String.class).invoke(null, hostname);
System.out.println("================UnixSocketAddressWithTransport returned with: " + udsAddress);
return new UnixSocketAddressWithTransport(
udsAddress,
UnixSocketAddressWithTransport.TransportType.UDS
);
} catch (Exception e) {
throw new UnknownHostException("Failed to create UnixDomainSocketAddress: " + e.getMessage());
}
} else {
SocketAddress jnrAddress = new UnixSocketAddress(hostname);
System.out.println("================UnixSocketAddressWithTransport returned with: " + jnrAddress);
return new UnixSocketAddressWithTransport(
jnrAddress,
UnixSocketAddressWithTransport.TransportType.UDS
);
}
}
};
} else {
return new Callable<SocketAddress>() {
@Override public SocketAddress call() throws UnknownHostException {
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> staticNamedPipeResolution(String namedPipe) {
final NamedPipeSocketAddress socketAddress = new NamedPipeSocketAddress(namedPipe);
return new Callable<SocketAddress>() {
@Override public SocketAddress call() {
return socketAddress;
}
};
}
protected static Callable<SocketAddress> staticUnixResolution(
final String path,
final UnixSocketAddressWithTransport.TransportType transportType) {
if (VersionUtils.hasNativeUdsSupport()) {
try {
Class<?> udsAddressClass = Class.forName("java.net.UnixDomainSocketAddress");
final SocketAddress udsAddress = (SocketAddress) udsAddressClass.getMethod("of", String.class).invoke(null, path);
System.out.println("================new Callable<SocketAddress> returned with udsAddress: " + udsAddress);
return new Callable<SocketAddress>() {
@Override public SocketAddress call() {
System.out.println("================UnixSocketAddressWithTransport returned with: " + udsAddress);
return new UnixSocketAddressWithTransport(udsAddress, transportType);
}
};
} catch (Exception e) {
throw new RuntimeException("Failed to create UnixDomainSocketAddress: " + e.getMessage(), e);
}
} else {
return new Callable<SocketAddress>() {
@Override public SocketAddress call() {
final UnixSocketAddress jnrAddress = new UnixSocketAddress(path);
System.out.println("================UnixSocketAddressWithTransport returned with: " + jnrAddress);
return new UnixSocketAddressWithTransport(jnrAddress, transportType);
}
};
}
}
private static Callable<SocketAddress> staticAddress(final String hostname, final int port) {
try {
return staticAddressResolution(hostname, port);
} catch (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);
}
}
}
}