MetricBucketOptions

data class MetricBucketOptions(val explicitBuckets: MetricBucketOptionsExplicitBuckets? = null, val exponentialBuckets: MetricBucketOptionsExponentialBuckets? = null, val linearBuckets: MetricBucketOptionsLinearBuckets? = null)

Constructors

Link copied to clipboard
constructor(explicitBuckets: MetricBucketOptionsExplicitBuckets? = null, exponentialBuckets: MetricBucketOptionsExponentialBuckets? = null, linearBuckets: MetricBucketOptionsLinearBuckets? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Specifies a set of buckets with arbitrary widths. Structure is documented below.

Link copied to clipboard

Specifies an exponential sequence of buckets that have a width that is proportional to the value of the lower bound. Each bucket represents a constant relative uncertainty on a specific value in the bucket. Structure is documented below.

Link copied to clipboard

Specifies a linear sequence of buckets that all have the same width (except overflow and underflow). Each bucket represents a constant absolute uncertainty on the specific value in the bucket. Structure is documented below.