Metric Bucket Options Args
data class MetricBucketOptionsArgs(val explicitBuckets: Output<MetricBucketOptionsExplicitBucketsArgs>? = null, val exponentialBuckets: Output<MetricBucketOptionsExponentialBucketsArgs>? = null, val linearBuckets: Output<MetricBucketOptionsLinearBucketsArgs>? = null) : ConvertibleToJava<MetricBucketOptionsArgs>
Constructors
Link copied to clipboard
constructor(explicitBuckets: Output<MetricBucketOptionsExplicitBucketsArgs>? = null, exponentialBuckets: Output<MetricBucketOptionsExponentialBucketsArgs>? = null, linearBuckets: Output<MetricBucketOptionsLinearBucketsArgs>? = null)
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.