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

io.prometheus.metrics.model.snapshots.NativeHistogramBucket Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
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