Histogram.Builder |
Histogram.Builder.buckets(double... buckets) |
Set the upper bounds of buckets for the histogram.
|
static Histogram.Builder |
Histogram.build() |
Return a Builder to allow configuration of a new Histogram.
|
static Histogram.Builder |
Histogram.build(java.lang.String name,
java.lang.String help) |
Return a Builder to allow configuration of a new Histogram.
|
Histogram.Builder |
Histogram.Builder.exponentialBuckets(double start,
double factor,
int count) |
Set the upper bounds of buckets for the histogram with an exponential sequence.
|
Histogram.Builder |
Histogram.Builder.linearBuckets(double start,
double width,
int count) |
Set the upper bounds of buckets for the histogram with a linear sequence.
|
Histogram.Builder |
Histogram.Builder.withExemplars() |
|
Histogram.Builder |
Histogram.Builder.withExemplarSampler(HistogramExemplarSampler exemplarSampler) |
|
Histogram.Builder |
Histogram.Builder.withoutExemplars() |
|