
io.dropwizard.metrics.OkHttpPosterFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dropwizard-metrics-librato Show documentation
Show all versions of dropwizard-metrics-librato Show documentation
Dropwizard integration with Librato Metrics
The newest version!
package io.dropwizard.metrics;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.librato.metrics.client.IPoster;
import com.librato.metrics.client.OkHttpPoster;
@JsonTypeName("okhttp")
public class OkHttpPosterFactory implements PosterFactory {
@Override
public IPoster createPoster() {
return new OkHttpPoster();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy