-
Notifications
You must be signed in to change notification settings - Fork 102
/
NonBlockingStatsDClient.java
1348 lines (1199 loc) · 50.2 KB
/
NonBlockingStatsDClient.java
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 java.io.IOException;
import java.net.SocketAddress;
import java.nio.ByteBuffer;
import java.nio.channels.WritableByteChannel;
import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;
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.Properties;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.Callable;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.ThreadLocalRandom;
/**
* 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>Some methods allow recording a value for a specific point in time by taking an extra
* timestamp parameter. Such values are exempt from aggregation and the value should indicate the
* final metric value at the given time. Please refer to Datadog documentation for the range of
* accepted timestamp values.
*
* <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 {
public static final String DD_DOGSTATSD_PORT_ENV_VAR = "DD_DOGSTATSD_PORT";
public static final String DD_AGENT_HOST_ENV_VAR = "DD_AGENT_HOST";
public static final String DD_NAMED_PIPE_ENV_VAR = "DD_DOGSTATSD_PIPE_NAME";
public static final String DD_ENTITY_ID_ENV_VAR = "DD_ENTITY_ID";
private static final String ENTITY_ID_TAG_NAME = "dd.internal.entity_id" ;
public static final String ORIGIN_DETECTION_ENABLED_ENV_VAR = "DD_ORIGIN_DETECTION_ENABLED";
public static final String DD_DOGSTATSD_URL_ENV_VAR = "DD_DOGSTATSD_URL";
private static final long MIN_TIMESTAMP = 1;
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 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 = true;
public static final boolean DEFAULT_ENABLE_ORIGIN_DETECTION = true;
public static final int SOCKET_CONNECT_TIMEOUT_MS = 1000;
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:";
/**
* UTF-8 is the expected encoding for data sent to the agent.
*/
public static final Charset UTF_8 = StandardCharsets.UTF_8;
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.
*/
protected static final ThreadLocal<NumberFormat> NUMBER_FORMATTER = new ThreadLocal<NumberFormat>() {
@Override
protected NumberFormat initialValue() {
return newFormatter(false);
}
};
protected 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;
}
protected static String format(ThreadLocal<NumberFormat> formatter, Number value) {
return formatter.get().format(value);
}
final String prefix;
private final ClientChannel clientChannel;
private final ClientChannel telemetryClientChannel;
private final StatsDClientErrorHandler handler;
private final String constantTagsRendered;
// 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;
private final boolean blocking;
/**
* 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 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.
* @param containerID
* Allows passing the container ID, this will be used by the Agent to enrich
* metrics with container tags.
* 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.
* @param originDetectionEnabled
* Enable/disable the client origin detection.
* 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.
* @param connectionTimeout
* the timeout in milliseconds for connecting to the StatsD server. Applies to unix sockets only.
* It is also used to detect if a connection is still alive and re-establish a new one if needed.
* @throws StatsDClientException
* if the client could not be started
*/
NonBlockingStatsDClient(final String prefix, final int queueSize, final String[] constantTags,
final StatsDClientErrorHandler errorHandler, final Callable<SocketAddress> addressLookup,
final Callable<SocketAddress> telemetryAddressLookup, final int timeout, final int bufferSize,
final int maxPacketSizeBytes, String entityID, final int poolSize, final int processorWorkers,
final int senderWorkers, boolean blocking, final boolean enableTelemetry, final int telemetryFlushInterval,
final int aggregationFlushInterval, final int aggregationShards, final ThreadFactory customThreadFactory,
String containerID, final boolean originDetectionEnabled, final int connectionTimeout)
throws StatsDClientException {
if ((prefix != null) && (!prefix.isEmpty())) {
this.prefix = prefix + ".";
} else {
this.prefix = "";
}
if (errorHandler == null) {
handler = NO_OP_HANDLER;
} else {
handler = errorHandler;
}
this.blocking = blocking;
{
List<String> costantPreTags = new ArrayList<>();
if (constantTags != null) {
for (final String constantTag : constantTags) {
costantPreTags.add(constantTag);
}
}
// Support "dd.internal.entity_id" internal tag.
final boolean hasEntityID = 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;
// Origin detection
if (hasEntityID) {
containerID = null;
} else {
boolean originEnabled = isOriginDetectionEnabled(containerID, originDetectionEnabled, hasEntityID);
containerID = getContainerID(containerID, originEnabled);
}
}
try {
clientChannel = createByteChannel(addressLookup, timeout, connectionTimeout, bufferSize);
ThreadFactory threadFactory = customThreadFactory != null ? customThreadFactory : new StatsDThreadFactory();
statsDProcessor = createProcessor(queueSize, handler, maxPacketSizeBytes, poolSize,
processorWorkers, blocking, aggregationFlushInterval, aggregationShards, threadFactory, containerID);
Properties properties = new Properties();
properties.load(getClass().getClassLoader().getResourceAsStream(
"dogstatsd/version.properties"));
String telemetryTags = tagString(new String[]{CLIENT_TRANSPORT_TAG + clientChannel.getTransportType(),
CLIENT_VERSION_TAG + properties.getProperty("dogstatsd_client_version"),
CLIENT_TAG}, new StringBuilder()).toString();
if (addressLookup == telemetryAddressLookup) {
telemetryClientChannel = clientChannel;
telemetryStatsDProcessor = statsDProcessor;
} else {
telemetryClientChannel = createByteChannel(telemetryAddressLookup, timeout, connectionTimeout, bufferSize);
// similar settings, but a single worker and non-blocking.
telemetryStatsDProcessor = createProcessor(queueSize, handler, maxPacketSizeBytes,
poolSize, 1, false, 0, aggregationShards, threadFactory, containerID);
}
this.telemetry = new Telemetry.Builder()
.tags(telemetryTags)
.processor(telemetryStatsDProcessor)
.build();
statsDSender = createSender(handler, clientChannel, statsDProcessor.getBufferPool(),
statsDProcessor.getOutboundQueue(), senderWorkers, threadFactory);
telemetryStatsDSender = statsDSender;
if (telemetryStatsDProcessor != statsDProcessor) {
// TODO: figure out why the hell telemetryClientChannel does not work here!
telemetryStatsDSender = createSender(handler, telemetryClientChannel,
telemetryStatsDProcessor.getBufferPool(), telemetryStatsDProcessor.getOutboundQueue(),
1, threadFactory);
}
// set telemetry
statsDProcessor.setTelemetry(this.telemetry);
statsDSender.setTelemetry(this.telemetry);
} catch (final Exception e) {
throw new StatsDClientException("Failed to start StatsD client", e);
}
statsDProcessor.startWorkers("StatsD-Processor-");
statsDSender.startWorkers("StatsD-Sender-");
if (enableTelemetry) {
if (telemetryStatsDProcessor != statsDProcessor) {
telemetryStatsDProcessor.startWorkers("StatsD-TelemetryProcessor-");
telemetryStatsDSender.startWorkers("StatsD-TelemetrySender-");
}
this.telemetry.start(telemetryFlushInterval);
}
}
/**
* Create a new StatsD client communicating with a StatsD instance on the
* host and port specified by the given builder.
* The builder must be resolved before calling this internal constructor.
*
* @param builder
* the resolved configuration builder
*
* @see NonBlockingStatsDClientBuilder#resolve()
*/
public NonBlockingStatsDClient(final NonBlockingStatsDClientBuilder builder) throws StatsDClientException {
this(builder.prefix, builder.queueSize, builder.constantTags, builder.errorHandler,
builder.addressLookup, builder.telemetryAddressLookup, builder.timeout,
builder.socketBufferSize, builder.maxPacketSizeBytes, builder.entityID,
builder.bufferPoolSize, builder.processorWorkers, builder.senderWorkers,
builder.blocking, builder.enableTelemetry, builder.telemetryFlushInterval,
(builder.enableAggregation ? builder.aggregationFlushInterval : 0),
builder.aggregationShards, builder.threadFactory, builder.containerID,
builder.originDetectionEnabled, builder.connectionTimeout);
}
protected StatsDProcessor createProcessor(final int queueSize, final StatsDClientErrorHandler handler,
final int maxPacketSizeBytes, final int bufferPoolSize, final int workers, final boolean blocking,
final int aggregationFlushInterval, final int aggregationShards, final ThreadFactory threadFactory,
final String containerID)
throws Exception {
if (blocking) {
return new StatsDBlockingProcessor(queueSize, handler, maxPacketSizeBytes, bufferPoolSize,
workers, aggregationFlushInterval, aggregationShards, threadFactory, containerID);
} else {
return new StatsDNonBlockingProcessor(queueSize, handler, maxPacketSizeBytes, bufferPoolSize,
workers, aggregationFlushInterval, aggregationShards, threadFactory, containerID);
}
}
protected StatsDSender createSender(final StatsDClientErrorHandler handler,
final WritableByteChannel clientChannel, BufferPool pool, BlockingQueue<ByteBuffer> buffers, final int senderWorkers,
final ThreadFactory threadFactory) throws Exception {
return new StatsDSender(clientChannel, handler, pool, buffers, senderWorkers, threadFactory);
}
/**
* Cleanly shut down this StatsD client. This method may throw an exception if
* the socket cannot be closed.
*
* <p>In blocking mode, this will block until all messages are sent to the server.
*/
@Override
public void stop() {
try {
this.telemetry.stop();
statsDProcessor.shutdown(blocking);
statsDSender.shutdown(blocking);
// shut down telemetry workers if need be
if (telemetryStatsDProcessor != statsDProcessor) {
telemetryStatsDProcessor.shutdown(false);
telemetryStatsDSender.shutdown(false);
}
} catch (final Exception e) {
handler.handle(e);
} finally {
if (clientChannel != null) {
try {
clientChannel.close();
} catch (final IOException e) {
handler.handle(e);
}
}
if (telemetryClientChannel != null && telemetryClientChannel != clientChannel) {
try {
telemetryClientChannel.close();
} catch (final IOException e) {
handler.handle(e);
}
}
}
}
@Override
public void close() {
stop();
}
/**
* Return tag list as a tag string.
* Generate a suffix conveying the given tag list to the client
*/
static StringBuilder tagString(final String[] tags, final String tagPrefix, final StringBuilder sb) {
if (tagPrefix != null) {
sb.append(tagPrefix);
if ((tags == null) || (tags.length == 0)) {
return sb;
}
sb.append(',');
} else {
if ((tags == null) || (tags.length == 0)) {
return sb;
}
sb.append("|#");
}
for (int n = tags.length - 1; n >= 0; n--) {
sb.append(tags[n]);
if (n > 0) {
sb.append(',');
}
}
return sb;
}
/**
* Generate a suffix conveying the given tag list to the client.
*/
StringBuilder tagString(final String[] tags, StringBuilder builder) {
return tagString(tags, constantTagsRendered, builder);
}
ClientChannel createByteChannel(
Callable<SocketAddress> addressLookup, int timeout, int connectionTimeout, int bufferSize)
throws Exception {
final SocketAddress address = addressLookup.call();
if (address instanceof NamedPipeSocketAddress) {
return new NamedPipeClientChannel((NamedPipeSocketAddress) address);
}
if (address instanceof UnixSocketAddressWithTransport) {
UnixSocketAddressWithTransport unixAddr = ((UnixSocketAddressWithTransport) address);
// TODO: Maybe introduce a `UnixClientChannel` that can handle both stream and datagram sockets? This would
// Allow us to support `unix://` for both kind of sockets like in go.
switch (unixAddr.getTransportType()) {
case UDS_STREAM:
return new UnixStreamClientChannel(unixAddr.getAddress(), timeout, connectionTimeout, bufferSize);
case UDS_DATAGRAM:
case UDS:
return new UnixDatagramClientChannel(unixAddr.getAddress(), timeout, bufferSize);
default:
throw new IllegalArgumentException("Unsupported transport type: " + unixAddr.getTransportType());
}
}
// We keep this for backward compatibility
try {
if (Class.forName("jnr.unixsocket.UnixSocketAddress").isInstance(address)) {
return new UnixDatagramClientChannel(address, timeout, bufferSize);
}
} catch (ClassNotFoundException e) {
// not loaded, can't use
}
return new DatagramClientChannel(address);
}
abstract class StatsDMessage<T extends Number> extends NumericMessage<T> {
final double sampleRate; // NaN for none
final long timestamp; // zero for none
protected StatsDMessage(String aspect, Message.Type type, T value, double sampleRate, long timestamp, String[] tags) {
super(aspect, type, value, tags);
this.sampleRate = sampleRate;
this.timestamp = timestamp;
}
@Override
public final boolean writeTo(StringBuilder builder, int capacity, String containerID) {
builder.append(prefix).append(aspect).append(':');
writeValue(builder);
builder.append('|').append(type);
if (!Double.isNaN(sampleRate)) {
builder.append('|').append('@').append(format(SAMPLE_RATE_FORMATTER, sampleRate));
}
if (timestamp != 0) {
builder.append("|T").append(timestamp);
}
tagString(this.tags, builder);
if (containerID != null && !containerID.isEmpty()) {
builder.append("|c:").append(containerID);
}
builder.append('\n');
return false;
}
@Override
public boolean canAggregate() {
// Timestamped values can not be aggregated.
return super.canAggregate() && this.timestamp == 0;
}
protected abstract void writeValue(StringBuilder builder);
}
boolean sendMetric(final Message message) {
return send(message);
}
private boolean send(final Message message) {
boolean success = statsDProcessor.send(message);
if (success) {
this.telemetry.incrMetricsSent(1, message.getType());
} else {
this.telemetry.incrPacketDroppedQueue(1);
}
return success;
}
// send double with sample rate and timestamp
private void send(String aspect, final double value, Message.Type type, double sampleRate, long timestamp, String[] tags) {
if (statsDProcessor.getAggregator().getFlushInterval() != 0 && !Double.isNaN(sampleRate)) {
switch (type) {
case COUNT:
sampleRate = Double.NaN;
break;
default:
break;
}
}
if (Double.isNaN(sampleRate) || !isInvalidSample(sampleRate)) {
sendMetric(new StatsDMessage<Double>(aspect, type, Double.valueOf(value), sampleRate, timestamp, tags) {
@Override protected void writeValue(StringBuilder builder) {
builder.append(format(NUMBER_FORMATTER, this.value));
}
});
}
}
private void send(String aspect, final double value, Message.Type type, double sampleRate, String[] tags) {
send(aspect, value, type, sampleRate, 0, tags);
}
// send double without sample rate
private void send(String aspect, final double value, Message.Type type, String[] tags) {
send(aspect, value, type, Double.NaN, 0, tags);
}
// send long with sample rate
private void send(String aspect, final long value, Message.Type type, double sampleRate, long timestamp, String[] tags) {
if (statsDProcessor.getAggregator().getFlushInterval() != 0 && !Double.isNaN(sampleRate)) {
switch (type) {
case COUNT:
sampleRate = Double.NaN;
break;
default:
break;
}
}
if (Double.isNaN(sampleRate) || !isInvalidSample(sampleRate)) {
sendMetric(new StatsDMessage<Long>(aspect, type, value, sampleRate, timestamp, tags) {
@Override protected void writeValue(StringBuilder builder) {
builder.append(this.value);
}
});
}
}
private void send(String aspect, final long value, Message.Type type, double sampleRate, String[] tags) {
send(aspect, value, type, sampleRate, 0, tags);
}
// send long without sample rate
private void send(String aspect, final long value, Message.Type type, String[] tags) {
send(aspect, value, type, Double.NaN, 0, tags);
}
private void sendWithTimestamp(String aspect, final double value, Message.Type type, long timestamp, String[] tags) {
if (timestamp < MIN_TIMESTAMP) {
timestamp = MIN_TIMESTAMP;
}
send(aspect, value, type, Double.NaN, timestamp, tags);
}
private void sendWithTimestamp(String aspect, final long value, Message.Type type, long timestamp, String[] tags) {
if (timestamp < MIN_TIMESTAMP) {
timestamp = MIN_TIMESTAMP;
}
send(aspect, value, type, Double.NaN, timestamp, tags);
}
/**
* Adjusts the specified counter by a given delta.
*
* <p>This method is non-blocking and is guaranteed not to throw an exception.</p>
*
* @param aspect
* the name of the counter to adjust
* @param delta
* the amount to adjust the counter by
* @param tags
* array of tags to be added to the data
*/
@Override
public void count(final String aspect, final long delta, final String... tags) {
send(aspect, delta, Message.Type.COUNT, tags);
}
/**
* {@inheritDoc}
*/
@Override
public void count(final String aspect, final long delta, final double sampleRate, final String...tags) {
send(aspect, delta, Message.Type.COUNT, sampleRate, tags);
}
/**
* Adjusts the specified counter by a given delta.
*
* <p>This method is non-blocking and is guaranteed not to throw an exception.</p>
*
* @param aspect
* the name of the counter to adjust
* @param delta
* the amount to adjust the counter by
* @param tags
* array of tags to be added to the data
*/
@Override
public void count(final String aspect, final double delta, final String... tags) {
send(aspect, delta, Message.Type.COUNT, tags);
}
/**
* {@inheritDoc}
*/
@Override
public void count(final String aspect, final double delta, final double sampleRate, final String...tags) {
send(aspect, delta, Message.Type.COUNT, sampleRate, tags);
}
/**
* {@inheritDoc}
*/
@Override
public void countWithTimestamp(final String aspect, final long value, final long timestamp, final String...tags) {
sendWithTimestamp(aspect, value, Message.Type.COUNT, timestamp, tags);
}
/**
* {@inheritDoc}
*/
@Override
public void countWithTimestamp(final String aspect, final double value, final long timestamp, final String...tags) {
sendWithTimestamp(aspect, value, Message.Type.COUNT, timestamp, tags);
}
/**
* Increments the specified counter by one.
*
* <p>This method is non-blocking and is guaranteed not to throw an exception.</p>
*
* @param aspect
* the name of the counter to increment
* @param tags
* array of tags to be added to the data
*/
@Override
public void incrementCounter(final String aspect, final String... tags) {
count(aspect, 1, tags);
}
/**
* {@inheritDoc}
*/
@Override
public void incrementCounter(final String aspect, final double sampleRate, final String... tags) {
count(aspect, 1, sampleRate, tags);
}
/**
* Convenience method equivalent to {@link #incrementCounter(String, String[])}.
*/
@Override
public void increment(final String aspect, final String... tags) {
incrementCounter(aspect, tags);
}
/**
* {@inheritDoc}
*/
@Override
public void increment(final String aspect, final double sampleRate, final String...tags ) {
incrementCounter(aspect, sampleRate, tags);
}
/**
* Decrements the specified counter by one.
*
* <p>This method is non-blocking and is guaranteed not to throw an exception.</p>
*
* @param aspect
* the name of the counter to decrement
* @param tags
* array of tags to be added to the data
*/
@Override
public void decrementCounter(final String aspect, final String... tags) {
count(aspect, -1, tags);
}
/**
* {@inheritDoc}
*/
@Override
public void decrementCounter(String aspect, final double sampleRate, final String... tags) {
count(aspect, -1, sampleRate, tags);
}
/**
* Convenience method equivalent to {@link #decrementCounter(String, String[])}.
*/
@Override
public void decrement(final String aspect, final String... tags) {
decrementCounter(aspect, tags);
}
/**
* {@inheritDoc}
*/
@Override
public void decrement(final String aspect, final double sampleRate, final String... tags) {
decrementCounter(aspect, sampleRate, tags);
}
/**
* Records the latest fixed value for the specified named gauge.
*
* <p>This method is non-blocking and is guaranteed not to throw an exception.</p>
*
* @param aspect
* the name of the gauge
* @param value
* the new reading of the gauge
* @param tags
* array of tags to be added to the data
*/
@Override
public void recordGaugeValue(final String aspect, final double value, final String... tags) {
send(aspect, value, Message.Type.GAUGE, tags);
}
/**
* {@inheritDoc}
*/
@Override
public void recordGaugeValue(final String aspect, final double value, final double sampleRate, final String... tags) {
send(aspect, value, Message.Type.GAUGE, sampleRate, tags);
}
/**
* Records the latest fixed value for the specified named gauge.
*
* <p>This method is non-blocking and is guaranteed not to throw an exception.</p>
*
* @param aspect
* the name of the gauge
* @param value
* the new reading of the gauge
* @param tags
* array of tags to be added to the data
*/
@Override
public void recordGaugeValue(final String aspect, final long value, final String... tags) {
send(aspect, value, Message.Type.GAUGE, tags);
}
/**
* {@inheritDoc}
*/
@Override
public void recordGaugeValue(final String aspect, final long value, final double sampleRate, final String... tags) {
send(aspect, value, Message.Type.GAUGE, sampleRate, tags);
}
/**
* Convenience method equivalent to {@link #recordGaugeValue(String, double, String[])}.
*/
@Override
public void gauge(final String aspect, final double value, final String... tags) {
recordGaugeValue(aspect, value, tags);
}
/**
* {@inheritDoc}
*/
@Override
public void gauge(final String aspect, final double value, final double sampleRate, final String... tags) {
recordGaugeValue(aspect, value, sampleRate, tags);
}
/**
* Convenience method equivalent to {@link #recordGaugeValue(String, long, String[])}.
*/
@Override
public void gauge(final String aspect, final long value, final String... tags) {
recordGaugeValue(aspect, value, tags);
}
/**
* {@inheritDoc}
*/
@Override
public void gauge(final String aspect, final long value, final double sampleRate, final String... tags) {
recordGaugeValue(aspect, value, sampleRate, tags);
}
/**
* {@inheritDoc}
*/
@Override
public void gaugeWithTimestamp(final String aspect, final double value, final long timestamp, final String... tags) {
sendWithTimestamp(aspect, value, Message.Type.GAUGE, timestamp, tags);
}
/**
* {@inheritDoc}
*/
@Override
public void gaugeWithTimestamp(final String aspect, final long value, final long timestamp, final String... tags) {
sendWithTimestamp(aspect, value, Message.Type.GAUGE, timestamp, tags);
}
/**
* Records an execution time in milliseconds for the specified named operation.
*
* <p>This method is non-blocking and is guaranteed not to throw an exception.</p>
*
* @param aspect
* the name of the timed operation
* @param timeInMs
* the time in milliseconds
* @param tags
* array of tags to be added to the data
*/
@Override
public void recordExecutionTime(final String aspect, final long timeInMs, final String... tags) {
send(aspect, timeInMs, Message.Type.TIME, tags);
}
/**
* {@inheritDoc}
*/
@Override
public void recordExecutionTime(final String aspect, final long timeInMs, final double sampleRate, final String... tags) {
send(aspect, timeInMs, Message.Type.TIME, sampleRate, tags);
}
/**
* Convenience method equivalent to {@link #recordExecutionTime(String, long, String[])}.
*/
@Override
public void time(final String aspect, final long value, final String... tags) {
recordExecutionTime(aspect, value, tags);
}
/**
* {@inheritDoc}
*/
@Override
public void time(final String aspect, final long value, final double sampleRate, final String... tags) {
recordExecutionTime(aspect, value, sampleRate, tags);
}
/**
* Records a value for the specified named histogram.
*
* <p>This method is non-blocking and is guaranteed not to throw an exception.</p>
*
* @param aspect
* the name of the histogram
* @param value
* the value to be incorporated in the histogram
* @param tags
* array of tags to be added to the data
*/
@Override
public void recordHistogramValue(final String aspect, final double value, final String... tags) {
send(aspect, value, Message.Type.HISTOGRAM, tags);
}
/**
* {@inheritDoc}
*/
@Override
public void recordHistogramValue(final String aspect, final double value, final double sampleRate, final String... tags) {
send(aspect, value, Message.Type.HISTOGRAM, sampleRate, tags);
}
/**
* Records a value for the specified named histogram.
*
* <p>This method is non-blocking and is guaranteed not to throw an exception.</p>
*
* @param aspect
* the name of the histogram
* @param value
* the value to be incorporated in the histogram
* @param tags
* array of tags to be added to the data
*/
@Override
public void recordHistogramValue(final String aspect, final long value, final String... tags) {
send(aspect, value, Message.Type.HISTOGRAM, tags);
}
/**
* {@inheritDoc}
*/
@Override
public void recordHistogramValue(final String aspect, final long value, final double sampleRate, final String... tags) {
send(aspect, value, Message.Type.HISTOGRAM, sampleRate, tags);
}
/**
* Convenience method equivalent to {@link #recordHistogramValue(String, double, String[])}.
*/
@Override
public void histogram(final String aspect, final double value, final String... tags) {
recordHistogramValue(aspect, value, tags);
}
/**
* {@inheritDoc}
*/
@Override
public void histogram(final String aspect, final double value, final double sampleRate, final String... tags) {
recordHistogramValue(aspect, value, sampleRate, tags);
}
/**
* Convenience method equivalent to {@link #recordHistogramValue(String, long, String[])}.