yet another graphite java client
1.add dependency in pom.xml
<dependency>
<groupId>top.devgo</groupId>
<artifactId>graphitej</artifactId>
<version>1.0.1</version>
</dependency>
2.start&stop
GraphiteJClient.start(prefix, host, port);//prefix will be add to all keys
GraphiteJClient.stop();
3.send metric
GraphiteJClient.sendRawMetric(keys, value, ts);