java-dogstatsd-client icon indicating copy to clipboard operation
java-dogstatsd-client copied to clipboard

Java statsd client library

Results 49 java-dogstatsd-client issues
Sort by recently updated
recently updated
newest added

After an unsuccessful write, StatsDSender would not clear the buffer before returning it to the pool. This could cause the processor to get the buffer with lim

The library does not escape special characters in metric names and tags, which can result in malformed packets and unexpected tags being sent over the wire. E.g. this: ``` final...

Should we clear the buffer [here](https://github.com/DataDog/java-dogstatsd-client/blob/ad4daeafa7cb6a6a906d8f9791b4da9eb661f8ef/src/main/java/com/timgroup/statsd/StatsDSender.java#L114) as well? When an exception is thrown from `clientChannel.write(buffer);`, the [_flipped_ ](https://github.com/DataDog/java-dogstatsd-client/blob/ad4daeafa7cb6a6a906d8f9791b4da9eb661f8ef/src/main/java/com/timgroup/statsd/StatsDSender.java#L91)`buffer` is put back to the `pool` in the next run of the...

Currently using this client (3.0.0) within a JAX-RS API and experiencing a memory leak which causes after a certain time the server to crash. After adding a `@PreDestroy` method which...

Ensure that an Automatic-Module-Name entry is added to the final MANIFEST.MF file in the produced jar. This will allow users of the library to properly import and use it on...

How to shutdown the client gracefully? Does the StatsDClient.close() method guarantees all buffers will be flushed and data sent to the server? Thanks.

Hi, I'm using micrometer-registry-statsd with @timed to report time series data to DataDog, and all of my metrics have "none" in the time unit section in the metrics summary page....

We are using https://github.com/coursera/metrics-datadog to forward DropWizard metrics into DataDog. We now find ourselves with a need to submit events, too. Any chance you guys can import the code dealing...

enhancement

We're running the Datadog agent as a DaemonSet (although I suspect the same issue will happen when running as a sidecar) in Kubernetes and the client is a singleton in...

Hi there, We recently migrated from [NonBlockingStatsDClient.java](https://github.com/tim-group/java-statsd-client/blob/master/src/main/java/com/timgroup/statsd/NonBlockingStatsDClient.java) to DataDog's [NonBlockingStatsDClient.java](https://github.com/DataDog/java-dogstatsd-client/blob/master/src/main/java/com/timgroup/statsd/NonBlockingStatsDClient.java). We see significant increase of cpu usage, proportional to number of instances of the client. e.g. single application pod cpu...