All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.kristofa.flume.HistogramBuilder Maven / Gradle / Ivy

Go to download

Flume Sink that will get application submitted annotations with duration from Zipkin spans and submit them to Metrics. Metrics can be configured to send metrics to several back-ends. Today this sink supports Graphite as back-end.

There is a newer version: 2.4.2
Show newest version
package com.github.kristofa.flume;

import com.codahale.metrics.Histogram;

/**
 * Builds {@link Histogram histograms}.
 * 
 * @author kristof
 */
interface HistogramBuilder {

    /**
     * Returns a new Histogram.
     * 
     * @return A new histogram.
     */
    Histogram buildHistogram();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy