-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathNonBlockingStatsDClientBuilder.java
More file actions
610 lines (519 loc) · 22.4 KB
/
NonBlockingStatsDClientBuilder.java
File metadata and controls
610 lines (519 loc) · 22.4 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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
package com.timgroup.statsd;
import java.lang.reflect.Method;
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;
import jnr.unixsocket.UnixSocketAddress;
/**
* Create a new StatsD client communicating with a StatsD instance on the specified host and port.
* All messages send via this client will have their keys prefixed with the specified string. The
* new client will attempt to open a connection to the StatsD server immediately upon instantiation,
* and may throw an exception if that a connection cannot be established. Once a client has been
* instantiated in this way, all exceptions thrown during subsequent usage are passed to the
* specified handler and then consumed, guaranteeing that failures in metrics will not affect normal
* code execution.
*/
public class NonBlockingStatsDClientBuilder implements Cloneable {
/** The maximum number of bytes for a message that can be sent. */
public int maxPacketSizeBytes = 0;
public int port = NonBlockingStatsDClient.DEFAULT_DOGSTATSD_PORT;
public int telemetryPort = NonBlockingStatsDClient.DEFAULT_DOGSTATSD_PORT;
/** The maximum amount of unprocessed messages in the queue. */
public int queueSize = NonBlockingStatsDClient.DEFAULT_QUEUE_SIZE;
/** The timeout in milliseconds for blocking operations. Applies to unix sockets only. */
public int timeout = NonBlockingStatsDClient.SOCKET_TIMEOUT_MS;
/** The size for the network buffer pool. */
public int bufferPoolSize = NonBlockingStatsDClient.DEFAULT_POOL_SIZE;
/** The socket buffer size in bytes. Applies to unix sockets only. */
public int socketBufferSize = NonBlockingStatsDClient.SOCKET_BUFFER_BYTES;
/** The number of processor worker threads assembling buffers for submission. */
public int processorWorkers = NonBlockingStatsDClient.DEFAULT_PROCESSOR_WORKERS;
/** The number of sender worker threads submitting buffers to the socket. */
public int senderWorkers = NonBlockingStatsDClient.DEFAULT_SENDER_WORKERS;
/** Blocking or non-blocking implementation for statsd message queue. */
public boolean blocking = NonBlockingStatsDClient.DEFAULT_BLOCKING;
/** Enable sending client telemetry. */
public boolean enableTelemetry = NonBlockingStatsDClient.DEFAULT_ENABLE_TELEMETRY;
public boolean enableAggregation = NonBlockingStatsDClient.DEFAULT_ENABLE_AGGREGATION;
/** Enable native JDK support for UDS. Only available on Java 16+. */
public boolean enableJdkSocket = NonBlockingStatsDClient.DEFAULT_ENABLE_JDK_SOCKET;
/** Telemetry flush interval, in milliseconds. */
public int telemetryFlushInterval = Telemetry.DEFAULT_FLUSH_INTERVAL;
/** Aggregation flush interval, in milliseconds. 0 disables aggregation. */
public int aggregationFlushInterval = StatsDAggregator.DEFAULT_FLUSH_INTERVAL;
public int aggregationShards = StatsDAggregator.DEFAULT_SHARDS;
/**
* Enable/disable the client origin detection.
*
* <p>This feature requires Datadog Agent version >=6.35.0 && <7.0.0 or Agent
* versions >=7.35.0. When enabled, the client tries to discover its container ID and sends
* it to the Agent to enrich the metrics with container tags. Origin detection can be disabled
* by configuring the environment variabe DD_ORIGIN_DETECTION_ENABLED=false The client tries to
* read the container ID by parsing the file /proc/self/cgroup. This is not supported on
* Windows.
*/
public boolean originDetectionEnabled = NonBlockingStatsDClient.DEFAULT_ENABLE_ORIGIN_DETECTION;
/**
* The timeout in milliseconds for connecting to the StatsD server. Applies to unix sockets
* only.
*
* <p>It is also used to detect if a connection is still alive and re-establish a new one if
* needed.
*/
public int connectionTimeout = NonBlockingStatsDClient.SOCKET_CONNECT_TIMEOUT_MS;
/** Yields the IP address and socket of the StatsD server. */
public Callable<SocketAddress> addressLookup;
/** Yields the IP address and socket of the StatsD telemetry server destination. */
public Callable<SocketAddress> telemetryAddressLookup;
public String hostname;
public String telemetryHostname;
public String namedPipe;
/** The prefix to apply to keys sent via this client. */
public String prefix;
/**
* The entity id value used with an internal tag for tracking client entity.
*
* <p>If null the client default the value with the environment variable "DD_ENTITY_ID". If the
* environment variable is not defined, the internal tag is not added.
*/
public String entityID;
/** Tags to be added to all content sent. */
public String[] constantTags;
/**
* Allows passing the container ID, this will be used by the Agent to enrich metrics with
* container tags.
*
* <p>This feature requires Datadog Agent version >=6.35.0 && <7.0.0 or Agent
* versions >=7.35.0. When configured, the provided container ID is prioritized over the
* container ID discovered via Origin Detection. When entityID or DD_ENTITY_ID are set, this
* value is ignored.
*/
public String containerID;
/** Handler to use when an exception occurs during usage, may be null to indicate noop. */
public StatsDClientErrorHandler errorHandler;
public ThreadFactory threadFactory;
public TagsCardinality tagsCardinality = null;
public NonBlockingStatsDClientBuilder() {}
public NonBlockingStatsDClientBuilder port(int val) {
port = val;
return this;
}
public NonBlockingStatsDClientBuilder telemetryPort(int val) {
telemetryPort = val;
return this;
}
/** The maximum amount of unprocessed messages in the queue. */
public NonBlockingStatsDClientBuilder queueSize(int val) {
queueSize = val;
return this;
}
/** The timeout in milliseconds for blocking operations. Applies to unix sockets only. */
public NonBlockingStatsDClientBuilder timeout(int val) {
timeout = val;
return this;
}
/**
* The timeout in milliseconds for connecting to the StatsD server. Applies to unix sockets
* only.
*
* <p>It is also used to detect if a connection is still alive and re-establish a new one if
* needed.
*/
public NonBlockingStatsDClientBuilder connectionTimeout(int val) {
connectionTimeout = val;
return this;
}
/** The size for the network buffer pool. */
public NonBlockingStatsDClientBuilder bufferPoolSize(int val) {
bufferPoolSize = val;
return this;
}
/** The socket buffer size in bytes. Applies to unix sockets only. */
public NonBlockingStatsDClientBuilder socketBufferSize(int val) {
socketBufferSize = val;
return this;
}
public NonBlockingStatsDClientBuilder maxPacketSizeBytes(int val) {
maxPacketSizeBytes = val;
return this;
}
/** The number of processor worker threads assembling buffers for submission. */
public NonBlockingStatsDClientBuilder processorWorkers(int val) {
processorWorkers = val;
return this;
}
/** The number of sender worker threads submitting buffers to the socket. */
public NonBlockingStatsDClientBuilder senderWorkers(int val) {
senderWorkers = val;
return this;
}
/** Blocking or non-blocking implementation for statsd message queue. */
public NonBlockingStatsDClientBuilder blocking(boolean val) {
blocking = val;
return this;
}
/** Yields the IP address and socket of the StatsD server. */
public NonBlockingStatsDClientBuilder addressLookup(Callable<SocketAddress> val) {
addressLookup = val;
return this;
}
/** Yields the IP address and socket of the StatsD telemetry server destination. */
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;
}
/** The prefix to apply to keys sent via this client. */
public NonBlockingStatsDClientBuilder prefix(String val) {
prefix = val;
return this;
}
/**
* The entity id value used with an internal tag for tracking client entity.
*
* <p>If null the client default the value with the environment variable "DD_ENTITY_ID". If the
* environment variable is not defined, the internal tag is not added.
*/
public NonBlockingStatsDClientBuilder entityID(String val) {
entityID = val;
return this;
}
/** Tags to be added to all content sent. */
public NonBlockingStatsDClientBuilder constantTags(String... val) {
constantTags = val;
return this;
}
/** Handler to use when an exception occurs during usage, may be null to indicate noop. */
public NonBlockingStatsDClientBuilder errorHandler(StatsDClientErrorHandler val) {
errorHandler = val;
return this;
}
/** Enable sending client telemetry. */
public NonBlockingStatsDClientBuilder enableTelemetry(boolean val) {
enableTelemetry = val;
return this;
}
public NonBlockingStatsDClientBuilder enableAggregation(boolean val) {
enableAggregation = val;
return this;
}
/** Telemetry flush interval, in milliseconds. */
public NonBlockingStatsDClientBuilder telemetryFlushInterval(int val) {
telemetryFlushInterval = val;
return this;
}
/** Aggregation flush interval, in milliseconds. 0 disables aggregation. */
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;
}
/**
* Allows passing the container ID, this will be used by the Agent to enrich metrics with
* container tags.
*
* <p>This feature requires Datadog Agent version >=6.35.0 && <7.0.0 or Agent
* versions >=7.35.0. When configured, the provided container ID is prioritized over the
* container ID discovered via Origin Detection. When entityID or DD_ENTITY_ID are set, this
* value is ignored.
*/
public NonBlockingStatsDClientBuilder containerID(String val) {
containerID = val;
return this;
}
/**
* Enable/disable the client origin detection.
*
* <p>This feature requires Datadog Agent version >=6.35.0 && <7.0.0 or Agent
* versions >7.35.0. When enabled, the client tries to discover its container ID and sends it
* to the Agent to enrich the metrics with container tags. Origin detection can be disabled by
* configuring the environment variabe DD_ORIGIN_DETECTION_ENABLED=false The client tries to
* read the container ID by parsing the file /proc/self/cgroup. This is not supported on
* Windows. The client prioritizes the value passed via or entityID or DD_ENTITY_ID (if set)
* over the container ID.
*/
public NonBlockingStatsDClientBuilder originDetectionEnabled(boolean val) {
originDetectionEnabled = val;
return this;
}
public NonBlockingStatsDClientBuilder enableJdkSocket(boolean val) {
enableJdkSocket = val;
return this;
}
/**
* Request that all metrics from this client to be enriched to specified tag cardinality.
*
* <p>See <a
* href="https://docs.datadoghq.com/getting_started/tagging/assigning_tags/?tab=containerizedenvironments#tags-cardinality">Tags
* cardinality documentation</a>.
*/
public NonBlockingStatsDClientBuilder tagsCardinality(TagsCardinality cardinality) {
tagsCardinality = cardinality;
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;
resolved.tagsCardinality = this.tagsCardinality;
if (resolved.tagsCardinality == null) {
resolved.tagsCardinality = TagsCardinality.fromString(System.getenv("DD_CARDINALITY"));
}
if (resolved.tagsCardinality == null) {
resolved.tagsCardinality =
TagsCardinality.fromString(System.getenv("DATADOG_CARDINALITY"));
}
if (resolved.tagsCardinality == null) {
resolved.tagsCardinality = TagsCardinality.DEFAULT;
}
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 {
return new UnixSocketAddressWithTransport(
new UnixSocketAddress(hostname),
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) {
return new Callable<SocketAddress>() {
@Override
public SocketAddress call() {
SocketAddress socketAddress;
// Use native JDK support for UDS on Java 16+ and jnr-unixsocket otherwise
if (VersionUtils.isJavaVersionAtLeast(16)
&& NonBlockingStatsDClient.DEFAULT_ENABLE_JDK_SOCKET) {
try {
// Avoid compiling Java 16+ classes in incompatible versions
Class<?> unixDomainSocketAddressClass =
Class.forName("java.net.UnixDomainSocketAddress");
Method ofMethod =
unixDomainSocketAddressClass.getMethod("of", String.class);
socketAddress = (SocketAddress) ofMethod.invoke(null, path);
} catch (Exception e) {
throw new StatsDClientException(
"Failed to create UnixSocketAddress for native JDK UDS implementation",
e);
}
} else {
socketAddress = new UnixSocketAddress(path);
}
UnixSocketAddressWithTransport result =
new UnixSocketAddressWithTransport(socketAddress, transportType);
return result;
}
};
}
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);
}
}
}
}