org.ubercraft.statsd.StatsdTimer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of statsd-over-slf4j Show documentation
Show all versions of statsd-over-slf4j Show documentation
A Java statsd client, combined with an SLF4J compatible logging facility.
The newest version!
package org.ubercraft.statsd;
public interface StatsdTimer extends StatsdLoggerIBase {
// Info level
void infoTime(long millis);
void infoTime(long millis, double sampleRate);
// Debug level
void debugTime(long millis);
void debugTime(long millis, double sampleRate);
// Trace level
void traceTime(long millis);
void traceTime(long millis, double sampleRate);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy