Skip to content

Commit

Permalink
Merge pull request #76 from rtoma/statsd
Browse files Browse the repository at this point in the history
Adding support for StatsD counter/gauges
  • Loading branch information
Cyrille Le Clerc committed Apr 25, 2016
2 parents f735df1 + bf89ebb commit 706a63b
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main/java/org/jmxtrans/agent/StatsDOutputWriter.java
Original file line number Diff line number Diff line change
Expand Up @@ -110,14 +110,15 @@ public void writeInvocationResult(String invocationName, Object value) throws IO

@Override
public synchronized void writeQueryResult(String metricName, String metricType, Object value) throws IOException {
String stats = metricNamePrefix + "." + metricName + ":" + value + "|c\n";
String type = "gauge".equalsIgnoreCase(metricType) || "g".equalsIgnoreCase(metricType) ? "g" : "c";
String stats = metricNamePrefix + "." + metricName + ":" + value + "|" + type + "\n";
if (logger.isLoggable(getDebugLevel())) {
logger.log(getDebugLevel(), "Sending msg: " + stats);
}
doSend(stats);
}

private synchronized boolean doSend(String stat) {
protected synchronized boolean doSend(String stat) {
try {
final byte[] data = stat.getBytes("utf-8");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ public void test() throws IOException {
for (int metricIndex = 0; metricIndex < 5; metricIndex++) {
writer.writeQueryResult("jmxtrans-agent-test-metric-" + metricIndex, "counter", Integer.valueOf(10 * measureIndex + metricIndex));
}
for (int metricIndex = 0; metricIndex < 5; metricIndex++) {
writer.writeQueryResult("jmxtrans-agent-test-metric-" + metricIndex, "gauge", Integer.valueOf(10 * measureIndex + metricIndex));
}
}

}
Expand Down
75 changes: 75 additions & 0 deletions src/test/java/org/jmxtrans/agent/StatsDOutputWriterTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
package org.jmxtrans.agent;

/*
* Copyright (c) 2010-2015 the original author or authors
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/

import org.junit.Assert;
import org.junit.Test;

import java.io.IOException;
import java.util.HashMap;
import java.util.Map;

import static org.hamcrest.core.IsEqual.equalTo;

public class StatsDOutputWriterTest {
StatsDOutputWriterMock writer = new StatsDOutputWriterMock();


@Test
public void test_write_counter_metric() throws IOException {
Map<String, String> settings = new HashMap<>();
settings.put(StatsDOutputWriter.SETTING_ROOT_PREFIX, "foo.bar");
// No real connect is done. Config is here to please the postConstruct.
settings.put(StatsDOutputWriter.SETTING_HOST, "statsd.example.com");
settings.put(StatsDOutputWriter.SETTING_PORT, "8125");

writer.postConstruct(settings);
writer.writeQueryResult("my-metric", "gauge", 12);
Assert.assertThat(writer.receivedStat, equalTo("foo.bar.my-metric:12|g\n"));
writer.writeQueryResult("my-metric", "g", 13);
Assert.assertThat(writer.receivedStat, equalTo("foo.bar.my-metric:13|g\n"));

writer.writeQueryResult("the.answer", "counter", 42);
Assert.assertThat(writer.receivedStat, equalTo("foo.bar.the.answer:42|c\n"));
writer.writeQueryResult("the.answer", "c", 43);
Assert.assertThat(writer.receivedStat, equalTo("foo.bar.the.answer:43|c\n"));

writer.writeQueryResult("the.answer", "lala", 44);
Assert.assertThat(writer.receivedStat, equalTo("foo.bar.the.answer:44|c\n"));

}

public class StatsDOutputWriterMock extends StatsDOutputWriter {
public String receivedStat;

@Override
protected synchronized boolean doSend(String stat) {
receivedStat = stat;
return true;
}
}

}

0 comments on commit 706a63b

Please sign in to comment.