
io.dropwizard.metrics.DefaultPosterFactory 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.DefaultPoster;
import com.librato.metrics.client.IPoster;
@JsonTypeName("default")
public class DefaultPosterFactory implements PosterFactory {
@Override
public IPoster createPoster() {
return new DefaultPoster();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy