io.prometheus.metrics.model.snapshots.NativeHistogramBucket Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmx_prometheus_httpserver Show documentation
Show all versions of jmx_prometheus_httpserver Show documentation
See https://github.com/prometheus/jmx_exporter/blob/master/README.md
package io.prometheus.metrics.model.snapshots;
/**
* For iterating over {@link NativeHistogramBuckets}.
*/
public class NativeHistogramBucket {
private final int bucketIndex;
private final long count;
public NativeHistogramBucket(int bucketIndex, long count) {
this.bucketIndex = bucketIndex;
this.count = count;
}
/**
* See {@link NativeHistogramBuckets} for info on native bucket indexes.
*/
public int getBucketIndex() {
return bucketIndex;
}
public long getCount() {
return count;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy