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

com.twitter.finagle.stats.BucketAndCount.scala Maven / Gradle / Ivy

There is a newer version: 24.2.0
Show newest version
package com.twitter.finagle.stats

/**
 * Buckets consist of a lower limit and an upper limit. In histograms, all
 * values that fall inside these limits are counted as the same.
 *
 * The lower limit is inclusive and the upper limit is exclusive
 *
 * @param count number of data points which landed in that bucket.
 */
case class BucketAndCount(lowerLimit: Long, upperLimit: Long, count: Int)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy