Uses of Class
io.prometheus.client.Histogram.Builder
-
Packages that use Histogram.Builder Package Description io.prometheus.client -
-
Uses of Histogram.Builder in io.prometheus.client
Methods in io.prometheus.client that return Histogram.Builder Modifier and Type Method Description 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.Constructors in io.prometheus.client with parameters of type Histogram.Builder Constructor Description Histogram(Histogram.Builder b)
-