Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

tim-group/java-statsd-client

Repository files navigation

java-statsd-client

Build Status

A statsd client library implemented in Java. Allows for Java applications to easily communicate with statsd.

Downloads

The client jar is distributed via maven central, and can be downloaded here.

<dependency>
 <groupId>com.timgroup</groupId>
 <artifactId>java-statsd-client</artifactId>
 <version>3.0.1</version>
</dependency>

Usage

import com.timgroup.statsd.StatsDClient;
import com.timgroup.statsd.NonBlockingStatsDClient;
public class Foo {
 private static final StatsDClient statsd = new NonBlockingStatsDClient("my.prefix", "statsd-host", 8125);
 public static final void main(String[] args) {
 statsd.incrementCounter("bar");
 statsd.recordGaugeValue("baz", 100);
 statsd.recordExecutionTime("bag", 25);
 statsd.recordSetEvent("qux", "one");
 }
}

About

a java statsd client library

Resources

License

Stars

Watchers

Forks

Packages

Contributors

AltStyle によって変換されたページ (->オリジナル) /