-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathNonBlockingStatsDClient.java
More file actions
1785 lines (1638 loc) · 72.4 KB
/
NonBlockingStatsDClient.java
File metadata and controls
1785 lines (1638 loc) · 72.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
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package com.timgroup.statsd;
import com.timgroup.statsd.Message;
import jnr.unixsocket.UnixDatagramChannel;
import jnr.unixsocket.UnixSocketAddress;
import jnr.unixsocket.UnixSocketOptions;
import java.io.IOException;
import java.lang.Double;
import java.net.SocketAddress;
import java.nio.ByteBuffer;
import java.nio.channels.DatagramChannel;
import java.text.DecimalFormat;
import java.text.DecimalFormatSymbols;
import java.text.NumberFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Locale;
import java.util.Objects;
import java.util.Properties;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.ThreadLocalRandom;
import java.util.concurrent.TimeUnit;
/**
* A simple StatsD client implementation facilitating metrics recording.
*
* <p>Upon instantiation, this client will establish a socket connection to a StatsD instance
* running on the specified host and port. Metrics are then sent over this connection as they are
* received by the client.
* </p>
*
* <p>Three key methods are provided for the submission of data-points for the application under
* scrutiny:
* <ul>
* <li>{@link #incrementCounter} - adds one to the value of the specified named counter</li>
* <li>{@link #recordGaugeValue} - records the latest fixed value for the specified named gauge</li>
* <li>{@link #recordExecutionTime} - records an execution time in milliseconds for the specified named operation</li>
* <li>{@link #recordHistogramValue} - records a value, to be tracked with average, maximum, and percentiles</li>
* <li>{@link #recordEvent} - records an event</li>
* <li>{@link #recordSetValue} - records a value in a set</li>
* </ul>
* From the perspective of the application, these methods are non-blocking, with the resulting
* IO operations being carried out in a separate thread. Furthermore, these methods are guaranteed
* not to throw an exception which may disrupt application execution.
*
* <p>As part of a clean system shutdown, the {@link #stop()} method should be invoked
* on any StatsD clients.</p>
*
* @author Tom Denley
*
*/
public class NonBlockingStatsDClient implements StatsDClient {
static final String DD_DOGSTATSD_PORT_ENV_VAR = "DD_DOGSTATSD_PORT";
static final String DD_AGENT_HOST_ENV_VAR = "DD_AGENT_HOST";
static final String DD_ENTITY_ID_ENV_VAR = "DD_ENTITY_ID";
private static final String ENTITY_ID_TAG_NAME = "dd.internal.entity_id" ;
enum Literal {
SERVICE,
ENV,
VERSION
;
private static final String PREFIX = "dd";
String envName() {
return (PREFIX + "_" + toString()).toUpperCase();
}
String envVal() {
return System.getenv(envName());
}
String tag() {
return toString().toLowerCase();
}
}
public static final int DEFAULT_UDP_MAX_PACKET_SIZE_BYTES = 1432;
public static final int DEFAULT_UDS_MAX_PACKET_SIZE_BYTES = 8192;
public static final int DEFAULT_QUEUE_SIZE = 4096;
public static final int DEFAULT_POOL_SIZE = 512;
public static final int DEFAULT_PROCESSOR_WORKERS = 1;
public static final int DEFAULT_SENDER_WORKERS = 1;
public static final int DEFAULT_DOGSTATSD_PORT = 8125;
public static final int DEFAULT_LOCK_SHARD_GRAIN = 4;
public static final int SOCKET_TIMEOUT_MS = 100;
public static final int SOCKET_BUFFER_BYTES = -1;
public static final boolean DEFAULT_BLOCKING = false;
public static final boolean DEFAULT_ENABLE_TELEMETRY = true;
public static final boolean DEFAULT_ENABLE_AGGREGATION = false;
public static final String CLIENT_TAG = "client:java";
public static final String CLIENT_VERSION_TAG = "client_version:";
public static final String CLIENT_TRANSPORT_TAG = "client_transport:";
private static final StatsDClientErrorHandler NO_OP_HANDLER = new StatsDClientErrorHandler() {
@Override public void handle(final Exception ex) { /* No-op */ }
};
/**
* The NumberFormat instances are not threadsafe and thus defined as ThreadLocal
* for safety.
*/
private static final ThreadLocal<NumberFormat> NUMBER_FORMATTER = new ThreadLocal<NumberFormat>() {
@Override
protected NumberFormat initialValue() {
return newFormatter(false);
}
};
private static final ThreadLocal<NumberFormat> SAMPLE_RATE_FORMATTER = new ThreadLocal<NumberFormat>() {
@Override
protected NumberFormat initialValue() {
return newFormatter(true);
}
};
static {
}
private static NumberFormat newFormatter(boolean sampler) {
// Always create the formatter for the US locale in order to avoid this bug:
// https://github.com/indeedeng/java-dogstatsd-client/issues/3
NumberFormat numberFormatter = NumberFormat.getInstance(Locale.US);
numberFormatter.setGroupingUsed(false);
// we need to specify a value for Double.NaN that is recognized by dogStatsD
if (numberFormatter instanceof DecimalFormat) { // better safe than a runtime error
final DecimalFormat decimalFormat = (DecimalFormat) numberFormatter;
final DecimalFormatSymbols symbols = decimalFormat.getDecimalFormatSymbols();
symbols.setNaN("NaN");
decimalFormat.setDecimalFormatSymbols(symbols);
}
if (sampler) {
numberFormatter.setMinimumFractionDigits(6);
} else {
numberFormatter.setMaximumFractionDigits(6);
}
return numberFormatter;
}
private static String format(ThreadLocal<NumberFormat> formatter, Number value) {
return formatter.get().format(value);
}
private final String prefix;
private final DatagramChannel clientChannel;
private final StatsDClientErrorHandler handler;
private final String constantTagsRendered;
private final ExecutorService executor = Executors.newFixedThreadPool(4, new ThreadFactory() {
final ThreadFactory delegate = Executors.defaultThreadFactory();
@Override public Thread newThread(final Runnable runnable) {
final Thread result = delegate.newThread(runnable);
result.setName("StatsD-" + result.getName());
result.setDaemon(true);
return result;
}
});
// Typically the telemetry and regular processors will be the same,
// but a separate destination for telemetry is supported.
protected final StatsDProcessor statsDProcessor;
protected StatsDProcessor telemetryStatsDProcessor;
protected final StatsDSender statsDSender;
protected StatsDSender telemetryStatsDSender;
protected final Telemetry telemetry;
/**
* 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.
*
* @param prefix
* the prefix to apply to keys sent via this client
* @param constantTags
* tags to be added to all content sent
* @param errorHandler
* handler to use when an exception occurs during usage, may be null to indicate noop
* @param addressLookup
* yields the IP address and socket of the StatsD server
* @param telemetryAddressLookup
* yields the IP address and socket of the StatsD telemetry server destination
* @param queueSize
* the maximum amount of unprocessed messages in the Queue.
* @param timeout
* the timeout in milliseconds for blocking operations. Applies to unix sockets only.
* @param bufferSize
* the socket buffer size in bytes. Applies to unix sockets only.
* @param maxPacketSizeBytes
* the maximum number of bytes for a message that can be sent
* @param entityID
* the entity id value used with an internal tag for tracking client entity.
* If "entityID=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.
* @param poolSize
* The size for the network buffer pool.
* @param processorWorkers
* The number of processor worker threads assembling buffers for submission.
* @param senderWorkers
* The number of sender worker threads submitting buffers to the socket.
* @param lockShardGrain
* The granularity for the lock sharding - sharding is based of thread id
* so value should not be greater than the application thread count..
* @param blocking
* Blocking or non-blocking implementation for statsd message queue.
* @param enableTelemetry
* Boolean to enable client telemetry.
* @param telemetryFlushInterval
* Telemetry flush interval integer, in milliseconds.
* @param aggregationFlushInterval
* Aggregation flush interval integer, in milliseconds. 0 disables aggregation.
* @param aggregationShards
* Aggregation flush interval integer, in milliseconds. 0 disables aggregation.
* @throws StatsDClientException
* if the client could not be started
*/
public NonBlockingStatsDClient(final String prefix, final int queueSize, String[] constantTags,
final StatsDClientErrorHandler errorHandler, Callable<SocketAddress> addressLookup,
Callable<SocketAddress> telemetryAddressLookup, final int timeout, final int bufferSize,
final int maxPacketSizeBytes, String entityID, final int poolSize, final int processorWorkers,
final int senderWorkers, final int lockShardGrain, boolean blocking, final boolean enableTelemetry,
final int telemetryFlushInterval, final int aggregationFlushInterval, final int aggregationShards)
throws StatsDClientException {
if ((prefix != null) && (!prefix.isEmpty())) {
this.prefix = prefix + ".";
} else {
this.prefix = "";
}
if (errorHandler == null) {
handler = NO_OP_HANDLER;
} else {
handler = errorHandler;
}
{
List<String> costantPreTags = new ArrayList<>();
if (constantTags != null) {
for (final String constantTag : constantTags) {
costantPreTags.add(constantTag);
}
}
// Support "dd.internal.entity_id" internal tag.
updateTagsWithEntityID(costantPreTags, entityID);
for (final Literal literal : Literal.values()) {
final String envVal = literal.envVal();
if (envVal != null && !envVal.trim().isEmpty()) {
costantPreTags.add(literal.tag() + ":" + envVal);
}
}
if (costantPreTags.isEmpty()) {
constantTagsRendered = null;
} else {
constantTagsRendered = tagString(
costantPreTags.toArray(new String[costantPreTags.size()]), null, new StringBuilder()).toString();
}
costantPreTags = null;
}
String transportType = "";
try {
final SocketAddress address = addressLookup.call();
if (address instanceof UnixSocketAddress) {
clientChannel = UnixDatagramChannel.open();
// Set send timeout, to handle the case where the transmission buffer is full
// If no timeout is set, the send becomes blocking
if (timeout > 0) {
clientChannel.setOption(UnixSocketOptions.SO_SNDTIMEO, timeout);
}
if (bufferSize > 0) {
clientChannel.setOption(UnixSocketOptions.SO_SNDBUF, bufferSize);
}
transportType = "uds";
} else {
clientChannel = DatagramChannel.open();
transportType = "udp";
}
statsDProcessor = createProcessor(queueSize, handler, maxPacketSizeBytes, poolSize,
processorWorkers, lockShardGrain, blocking, aggregationFlushInterval, aggregationShards);
telemetryStatsDProcessor = statsDProcessor;
Properties properties = new Properties();
properties.load(getClass().getClassLoader().getResourceAsStream("version.properties"));
String telemetrytags = tagString(new String[]{CLIENT_TRANSPORT_TAG + transportType,
CLIENT_VERSION_TAG + properties.getProperty("dogstatsd_client_version"),
CLIENT_TAG}, new StringBuilder()).toString();
DatagramChannel telemetryClientChannel = clientChannel;
if (addressLookup != telemetryAddressLookup) {
final SocketAddress telemetryAddress = telemetryAddressLookup.call();
if (telemetryAddress instanceof UnixSocketAddress) {
telemetryClientChannel = UnixDatagramChannel.open();
// Set send timeout, to handle the case where the transmission buffer is full
// If no timeout is set, the send becomes blocking
if (timeout > 0) {
telemetryClientChannel.setOption(UnixSocketOptions.SO_SNDTIMEO, timeout);
}
if (bufferSize > 0) {
telemetryClientChannel.setOption(UnixSocketOptions.SO_SNDBUF, bufferSize);
}
} else if (transportType == "uds") {
// UDP clientChannel can submit to multiple addresses, we only need
// a new channel if transport type is UDS for main traffic.
telemetryClientChannel = DatagramChannel.open();
}
// similar settings, but a single worker and non-blocking.
telemetryStatsDProcessor = createProcessor(queueSize, handler, maxPacketSizeBytes,
poolSize, 1, 1, false, 0, aggregationShards);
}
this.telemetry = new Telemetry(telemetrytags, telemetryStatsDProcessor);
statsDSender = createSender(addressLookup, handler, clientChannel, statsDProcessor.getBufferPool(),
statsDProcessor.getOutboundQueue(), senderWorkers);
telemetryStatsDSender = statsDSender;
if (telemetryStatsDProcessor != statsDProcessor) {
// TODO: figure out why the hell telemetryClientChannel does not work here!
telemetryStatsDSender = createSender(telemetryAddressLookup, handler, telemetryClientChannel,
telemetryStatsDProcessor.getBufferPool(), telemetryStatsDProcessor.getOutboundQueue(), 1);
}
// set telemetry
statsDProcessor.setTelemetry(this.telemetry);
statsDSender.setTelemetry(this.telemetry);
} catch (final Exception e) {
throw new StatsDClientException("Failed to start StatsD client", e);
}
executor.submit(statsDProcessor);
executor.submit(statsDSender);
if (enableTelemetry) {
if (telemetryStatsDProcessor != statsDProcessor) {
executor.submit(telemetryStatsDProcessor);
executor.submit(telemetryStatsDSender);
}
this.telemetry.start(telemetryFlushInterval);
}
}
/**
* Create a new StatsD client communicating with a StatsD instance on the
* specified host and port.
* This is a shallow copy constructor meant to be used internally only.
*
* @param client
* source object to copy
*/
private NonBlockingStatsDClient(NonBlockingStatsDClient client)
throws StatsDClientException {
prefix = client.prefix;
handler = client.handler;
constantTagsRendered = client.constantTagsRendered;
clientChannel = client.clientChannel;
try {
statsDProcessor = createProcessor(client.statsDProcessor);
statsDSender = new StatsDSender(
client.statsDSender, statsDProcessor.getBufferPool(), statsDProcessor.getOutboundQueue());
} catch (Exception e) {
throw new StatsDClientException("Failed to instantiate StatsD client copy", e);
}
telemetry = new Telemetry(client.telemetry.getTags(), statsDProcessor);
executor.submit(statsDProcessor);
executor.submit(statsDSender);
}
/**
* Create a new StatsD client communicating with a StatsD instance. It
* uses Environment variables ("DD_AGENT_HOST" and "DD_DOGSTATSD_PORT")
* in order to configure the communication with a StatsD instance.
* 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 consumed, guaranteeing that failures in metrics will not
* affect normal code execution.
*
* @param prefix
* the prefix to apply to keys sent via this client
* @throws StatsDClientException
* if the client could not be started
*/
@Deprecated
public NonBlockingStatsDClient(final String prefix) throws StatsDClientException {
this(new NonBlockingStatsDClientBuilder()
.prefix(prefix)
.build());
}
/**
* 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 consumed, guaranteeing
* that failures in metrics will not affect normal code execution.
*
* @param prefix
* the prefix to apply to keys sent via this client
* @param hostname
* the host name of the targeted StatsD server. If 'null' the environment variable
* "DD_AGENT_HOST" is used to get the host name.
* @param port
* the port of the targeted StatsD server. If the parameter 'hostname' is 'null' and
* this parameter is equal to '0', the environment variable
* "DD_DOGSTATSD_PORT" is used to get the port, else the default value '8125' is used.
* @throws StatsDClientException
* if the client could not be started
*/
@Deprecated
public NonBlockingStatsDClient(final String prefix, final String hostname, final int port) throws StatsDClientException {
this(new NonBlockingStatsDClientBuilder()
.prefix(prefix)
.hostname(hostname)
.port(port)
.build());
}
/**
* 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 consumed, guaranteeing
* that failures in metrics will not affect normal code execution.
*
* @param prefix
* the prefix to apply to keys sent via this client
* @param hostname
* the host name of the targeted StatsD server. If 'null' the environment variable
* "DD_AGENT_HOST" is used to get the host name.
* @param port
* the port of the targeted StatsD server. If the parameter 'hostname' is 'null' and
* this parameter is equal to '0', the environment variable
* "DD_DOGSTATSD_PORT" is used to get the port, else the default value '8125' is used.
* @param queueSize
* the maximum amount of unprocessed messages in the BlockingQueue.
* @throws StatsDClientException
* if the client could not be started
*/
@Deprecated
public NonBlockingStatsDClient(final String prefix, final String hostname, final int port,
final int queueSize) throws StatsDClientException {
this(new NonBlockingStatsDClientBuilder()
.prefix(prefix)
.hostname(hostname)
.port(port)
.queueSize(queueSize)
.build());
}
/**
* 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 consumed, guaranteeing
* that failures in metrics will not affect normal code execution.
*
* @param prefix
* the prefix to apply to keys sent via this client
* @param hostname
* the host name of the targeted StatsD server. If 'null' the environment variable
* "DD_AGENT_HOST" is used to get the host name.
* @param port
* the port of the targeted StatsD server. If the parameter 'hostname' is 'null' and
* this parameter is equal to '0', the environment variable
* "DD_DOGSTATSD_PORT" is used to get the port, else the default value '8125' is used.
* @param constantTags
* tags to be added to all content sent
* @throws StatsDClientException
* if the client could not be started
*/
@Deprecated
public NonBlockingStatsDClient(final String prefix, final String hostname, final int port,
final String... constantTags) throws StatsDClientException {
this(new NonBlockingStatsDClientBuilder()
.prefix(prefix)
.hostname(hostname)
.port(port)
.constantTags(constantTags)
.build());
}
/**
* 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 consumed, guaranteeing
* that failures in metrics will not affect normal code execution.
*
* @param prefix
* the prefix to apply to keys sent via this client
* @param hostname
* the host name of the targeted StatsD server. If 'null' the environment variable
* "DD_AGENT_HOST" is used to get the host name.
* @param port
* the port of the targeted StatsD server. If the parameter 'hostname' is 'null' and
* this parameter is equal to '0', the environment variable
* "DD_DOGSTATSD_PORT" is used to get the port, else the default value '8125' is used.
* @param constantTags
* tags to be added to all content sent
* @param maxPacketSizeBytes
* the maximum number of bytes for a message that can be sent
* @throws StatsDClientException
* if the client could not be started
*/
@Deprecated
public NonBlockingStatsDClient(final String prefix, final String hostname, final int port,
final String[] constantTags, final int maxPacketSizeBytes) throws StatsDClientException {
this(new NonBlockingStatsDClientBuilder()
.prefix(prefix)
.hostname(hostname)
.port(port)
.constantTags(constantTags)
.maxPacketSizeBytes(maxPacketSizeBytes)
.build());
}
/**
* 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 consumed, guaranteeing
* that failures in metrics will not affect normal code execution.
*
* @param prefix
* the prefix to apply to keys sent via this client
* @param hostname
* the host name of the targeted StatsD server. If 'null' the environment variable
* "DD_AGENT_HOST" is used to get the host name.
* @param port
* the port of the targeted StatsD server. If the parameter 'hostname' is 'null' and
* this parameter is equal to '0', the environment variable
* "DD_DOGSTATSD_PORT" is used to get the port, else the default value '8125' is used.
* @param constantTags
* tags to be added to all content sent
* @param queueSize
* the maximum amount of unprocessed messages in the BlockingQueue.
* @throws StatsDClientException
* if the client could not be started
*/
@Deprecated
public NonBlockingStatsDClient(final String prefix, final String hostname, final int port,
final int queueSize, final String... constantTags) throws StatsDClientException {
this(new NonBlockingStatsDClientBuilder()
.prefix(prefix)
.hostname(hostname)
.port(port)
.queueSize(queueSize)
.constantTags(constantTags)
.build());
}
/**
* 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.
*
* @param prefix
* the prefix to apply to keys sent via this client
* @param hostname
* the host name of the targeted StatsD server. If 'null' the environment variable
* "DD_AGENT_HOST" is used to get the host name.
* @param port
* the port of the targeted StatsD server. If the parameter 'hostname' is 'null' and
* this parameter is equal to '0', the environment variable
* "DD_DOGSTATSD_PORT" is used to get the port, else the default value '8125' is used.
* @param constantTags
* tags to be added to all content sent
* @param errorHandler
* handler to use when an exception occurs during usage, may be null to indicate noop
* @throws StatsDClientException
* if the client could not be started
*/
@Deprecated
public NonBlockingStatsDClient(final String prefix,final String hostname, final int port,
final String[] constantTags, final StatsDClientErrorHandler errorHandler)
throws StatsDClientException {
this(new NonBlockingStatsDClientBuilder()
.prefix(prefix)
.hostname(hostname)
.port(port)
.constantTags(constantTags)
.errorHandler(errorHandler)
.build());
}
/**
* 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.
*
* @param prefix
* the prefix to apply to keys sent via this client
* @param hostname
* the host name of the targeted StatsD server. If 'null' the environment variable
* "DD_AGENT_HOST" is used to get the host name.
* @param port
* the port of the targeted StatsD server. If the parameter 'hostname' is 'null' and
* this parameter is equal to '0', the environment variable
* "DD_DOGSTATSD_PORT" is used to get the port, else the default value '8125' is used.
* @param constantTags
* tags to be added to all content sent
* @param errorHandler
* handler to use when an exception occurs during usage, may be null to indicate noop
* @param queueSize
* the maximum amount of unprocessed messages in the BlockingQueue.
* @throws StatsDClientException
* if the client could not be started
*/
@Deprecated
public NonBlockingStatsDClient(final String prefix, final String hostname, final int port, final int queueSize,
final String[] constantTags, final StatsDClientErrorHandler errorHandler) throws StatsDClientException {
this(new NonBlockingStatsDClientBuilder()
.prefix(prefix)
.hostname(hostname)
.port(port)
.queueSize(queueSize)
.constantTags(constantTags)
.errorHandler(errorHandler)
.build());
}
/**
* 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.
*
* @param prefix
* the prefix to apply to keys sent via this client
* @param hostname
* the host name of the targeted StatsD server. If 'null' the environment variable
* "DD_AGENT_HOST" is used to get the host name.
* @param port
* the port of the targeted StatsD server. If the parameter 'hostname' is 'null' and
* this parameter is equal to '0', the environment variable
* "DD_DOGSTATSD_PORT" is used to get the port, else the default value '8125' is used.
* @param constantTags
* tags to be added to all content sent
* @param errorHandler
* handler to use when an exception occurs during usage, may be null to indicate noop
* @param queueSize
* the maximum amount of unprocessed messages in the BlockingQueue.
* @param entityID
* the entity id value used with an internal tag for tracking client entity.
* If "entityID=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.
* @throws StatsDClientException
* if the client could not be started
*/
@Deprecated
public NonBlockingStatsDClient(final String prefix, final String hostname, final int port, final int queueSize,
final String[] constantTags, final StatsDClientErrorHandler errorHandler, String entityID)
throws StatsDClientException {
this(new NonBlockingStatsDClientBuilder()
.prefix(prefix)
.hostname(hostname)
.port(port)
.queueSize(queueSize)
.constantTags(constantTags)
.errorHandler(errorHandler)
.entityID(entityID)
.build());
}
/**
* 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.
*
* @param prefix
* the prefix to apply to keys sent via this client
* @param hostname
* the host name of the targeted StatsD server. If 'null' the environment variable
* "DD_AGENT_HOST" is used to get the host name.
* @param port
* the port of the targeted StatsD server. If the parameter 'hostname' is 'null' and
* this parameter is equal to '0', the environment variable
* "DD_DOGSTATSD_PORT" is used to get the port, else the default value '8125' is used.
* @param constantTags
* tags to be added to all content sent
* @param errorHandler
* handler to use when an exception occurs during usage, may be null to indicate noop
* @param queueSize
* the maximum amount of unprocessed messages in the BlockingQueue.
* @param maxPacketSizeBytes
* the maximum number of bytes for a message that can be sent
* @throws StatsDClientException
* if the client could not be started
*/
@Deprecated
public NonBlockingStatsDClient(final String prefix, final String hostname, final int port,
final int queueSize, final String[] constantTags, final StatsDClientErrorHandler errorHandler,
final int maxPacketSizeBytes) throws StatsDClientException {
this(new NonBlockingStatsDClientBuilder()
.prefix(prefix)
.hostname(hostname)
.port(port)
.queueSize(queueSize)
.constantTags(constantTags)
.errorHandler(errorHandler)
.maxPacketSizeBytes(maxPacketSizeBytes)
.build());
}
/**
* 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.
*
* @param prefix
* the prefix to apply to keys sent via this client
* @param hostname
* the host name of the targeted StatsD server. If 'null' the environment variable
* "DD_AGENT_HOST" is used to get the host name.
* @param port
* the port of the targeted StatsD server. If the parameter 'hostname' is 'null' and
* this parameter is equal to '0', the environment variable
* "DD_DOGSTATSD_PORT" is used to get the port, else the default value '8125' is used.
* @param constantTags
* tags to be added to all content sent
* @param errorHandler
* handler to use when an exception occurs during usage, may be null to indicate noop
* @param queueSize
* the maximum amount of unprocessed messages in the BlockingQueue.
* @param timeout
* the timeout in milliseconds for blocking operations. Applies to unix sockets only.
* @param bufferSize
* the socket buffer size in bytes. Applies to unix sockets only.
* @throws StatsDClientException
* if the client could not be started
*/
@Deprecated
public NonBlockingStatsDClient(final String prefix, final String hostname, final int port,
final int queueSize, int timeout, int bufferSize, final String[] constantTags,
final StatsDClientErrorHandler errorHandler) throws StatsDClientException {
this(new NonBlockingStatsDClientBuilder()
.prefix(prefix)
.hostname(hostname)
.port(port)
.queueSize(queueSize)
.timeout(timeout)
.socketBufferSize(bufferSize)
.constantTags(constantTags)
.errorHandler(errorHandler)
.build());
}
/**
* 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.
*
* @param prefix
* the prefix to apply to keys sent via this client
* @param constantTags
* tags to be added to all content sent
* @param errorHandler
* handler to use when an exception occurs during usage, may be null to indicate noop
* @param addressLookup
* yields the IP address and socket of the StatsD server
* @param queueSize
* the maximum amount of unprocessed messages in the BlockingQueue.
* @throws StatsDClientException
* if the client could not be started
*/
@Deprecated
public NonBlockingStatsDClient(final String prefix, final int queueSize, String[] constantTags,
final StatsDClientErrorHandler errorHandler, final Callable<SocketAddress> addressLookup)
throws StatsDClientException {
this(new NonBlockingStatsDClientBuilder()
.prefix(prefix)
.queueSize(queueSize)
.constantTags(constantTags)
.errorHandler(errorHandler)
.addressLookup(addressLookup)
.build());
}
/**
* 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.
*
* @param prefix
* the prefix to apply to keys sent via this client
* @param constantTags
* tags to be added to all content sent
* @param errorHandler
* handler to use when an exception occurs during usage, may be null to indicate noop
* @param addressLookup
* yields the IP address and socket of the StatsD server
* @param queueSize
* the maximum amount of unprocessed messages in the BlockingQueue.
* @param timeout
* the timeout in milliseconds for blocking operations. Applies to unix sockets only.
* @param bufferSize
* the socket buffer size in bytes. Applies to unix sockets only.
* @throws StatsDClientException
* if the client could not be started
*/
@Deprecated
public NonBlockingStatsDClient(final String prefix, final int queueSize, String[] constantTags,
final StatsDClientErrorHandler errorHandler, final Callable<SocketAddress> addressLookup,
final int timeout, final int bufferSize) throws StatsDClientException {
this(new NonBlockingStatsDClientBuilder()
.prefix(prefix)
.queueSize(queueSize)
.constantTags(constantTags)
.errorHandler(errorHandler)
.addressLookup(addressLookup)
.timeout(timeout)
.socketBufferSize(bufferSize)
.build());
}
/**
* 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.
*
* @param prefix
* the prefix to apply to keys sent via this client
* @param constantTags
* tags to be added to all content sent
* @param errorHandler
* handler to use when an exception occurs during usage, may be null to indicate noop
* @param addressLookup
* yields the IP address and socket of the StatsD server
* @param queueSize
* the maximum amount of unprocessed messages in the BlockingQueue.
* the maximum amount of unprocessed messages in the Queue.
* @param timeout
* the timeout in milliseconds for blocking operations. Applies to unix sockets only.
* @param bufferSize
* the socket buffer size in bytes. Applies to unix sockets only.
* @param maxPacketSizeBytes
* the maximum number of bytes for a message that can be sent
* @throws StatsDClientException
* if the client could not be started
*/
@Deprecated
public NonBlockingStatsDClient(final String prefix, final int queueSize, String[] constantTags,
final StatsDClientErrorHandler errorHandler, final Callable<SocketAddress> addressLookup,
final int timeout, final int bufferSize, final int maxPacketSizeBytes) throws StatsDClientException {
this(new NonBlockingStatsDClientBuilder()
.prefix(prefix)
.queueSize(queueSize)
.constantTags(constantTags)
.errorHandler(errorHandler)
.addressLookup(addressLookup)
.timeout(timeout)
.socketBufferSize(bufferSize)
.maxPacketSizeBytes(maxPacketSizeBytes)
.build());
}
/**
* 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.
*
* @param prefix
* the prefix to apply to keys sent via this client
* @param constantTags
* tags to be added to all content sent
* @param errorHandler
* handler to use when an exception occurs during usage, may be null to indicate noop
* @param addressLookup
* yields the IP address and socket of the StatsD server
* @param queueSize
* the maximum amount of unprocessed messages in the BlockingQueue.
* the maximum amount of unprocessed messages in the Queue.
* @param timeout
* the timeout in milliseconds for blocking operations. Applies to unix sockets only.
* @param bufferSize
* the socket buffer size in bytes. Applies to unix sockets only.
* @param maxPacketSizeBytes
* the maximum number of bytes for a message that can be sent
* @param entityID
* the entity id value used with an internal tag for tracking client entity.
* If "entityID=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.
* @param poolSize
* The size for the network buffer pool.
* @param processorWorkers
* The number of processor worker threads assembling buffers for submission.
* @param senderWorkers
* The number of sender worker threads submitting buffers to the socket.
* @param blocking
* Blocking or non-blocking implementation for statsd message queue.
* @param enableTelemetry
* Should telemetry be enabled for the client.
* @param telemetryFlushInterval
* Telemetry flush interval in seconds when the feature is enabled.
* @throws StatsDClientException
* if the client could not be started
*/
public NonBlockingStatsDClient(final String prefix, final int queueSize, String[] constantTags,
final StatsDClientErrorHandler errorHandler, Callable<SocketAddress> addressLookup,
final int timeout, final int bufferSize, final int maxPacketSizeBytes, String entityID,
final int poolSize, final int processorWorkers, final int senderWorkers, boolean blocking,