Skip to content

Commit

Permalink
Merge pull request #8906 from odin-delrio:fix-statsd-metrics-collection
Browse files Browse the repository at this point in the history
* pr/8906:
  Polish "Fix statsd metrics collection for names with ":""
  Fix statsd metrics collection for names with ":"
  • Loading branch information
snicoll committed Apr 18, 2017
2 parents cdf3ead + 9a5346f commit 38b7d0e
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
* a gauge.
*
* @author Dave Syer
* @author Odín del Río
* @since 1.3.0
*/
public class StatsdMetricWriter implements MetricWriter, Closeable {
Expand Down Expand Up @@ -87,12 +88,13 @@ private static String trimPrefix(String prefix) {

@Override
public void increment(Delta<?> delta) {
this.client.count(delta.getName(), delta.getValue().longValue());
this.client.count(sanitizeMetricName(delta.getName()),
delta.getValue().longValue());
}

@Override
public void set(Metric<?> value) {
String name = value.getName();
String name = sanitizeMetricName(value.getName());
if (name.contains("timer.") && !name.contains("gauge.")
&& !name.contains("counter.")) {
this.client.recordExecutionTime(name, value.getValue().longValue());
Expand All @@ -117,6 +119,15 @@ public void close() {
this.client.stop();
}

/**
* Sanitize the metric name if necessary.
* @param name The metric name
* @return The sanitized metric name
*/
private String sanitizeMetricName(String name) {
return name.replace(":", "-");
}

private static final class LoggingStatsdErrorHandler
implements StatsDClientErrorHandler {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2016 the original author or authors.
* Copyright 2012-2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -36,6 +36,7 @@
* Tests for {@link StatsdMetricWriter}.
*
* @author Dave Syer
* @author Odín del Río
*/
public class StatsdMetricWriterTests {

Expand Down Expand Up @@ -97,6 +98,20 @@ public void periodPrefix() throws Exception {
assertThat(this.server.messagesReceived().get(0)).isEqualTo("my.gauge.foo:3|g");
}

@Test
public void incrementMetricWithInvalidCharsInName() throws Exception {
this.writer.increment(new Delta<Long>("counter.fo:o", 3L));
this.server.waitForMessage();
assertThat(this.server.messagesReceived().get(0)).isEqualTo("me.counter.fo-o:3|c");
}

@Test
public void setMetricWithInvalidCharsInName() throws Exception {
this.writer.set(new Metric<Long>("gauge.f:o:o", 3L));
this.server.waitForMessage();
assertThat(this.server.messagesReceived().get(0)).isEqualTo("me.gauge.f-o-o:3|g");
}

private static final class DummyStatsDServer implements Runnable {

private final List<String> messagesReceived = new ArrayList<String>();
Expand Down

0 comments on commit 38b7d0e

Please sign in to comment.