Class ExponentialBuckets
Describing buckets with exponentially growing width.
Implements
Inherited Members
Namespace: Google.Apis.ServiceControl.v1.Data
Assembly: Google.Apis.ServiceControl.v1.dll
Syntax
public class ExponentialBuckets : IDirectResponseSchemaProperties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }Property Value
| Type | Description | 
|---|---|
| string | 
GrowthFactor
The i'th exponential bucket covers the interval [scale * growth_factor^(i-1), scale * growth_factor^i) where i ranges from 1 to num_finite_buckets inclusive. Must be larger than 1.0.
Declaration
[JsonProperty("growthFactor")]
public virtual double? GrowthFactor { get; set; }Property Value
| Type | Description | 
|---|---|
| double? | 
NumFiniteBuckets
The number of finite buckets. With the underflow and overflow buckets, the total number of buckets is
num_finite_buckets + 2. See comments on bucket_options for details.
Declaration
[JsonProperty("numFiniteBuckets")]
public virtual int? NumFiniteBuckets { get; set; }Property Value
| Type | Description | 
|---|---|
| int? | 
Scale
The i'th exponential bucket covers the interval [scale * growth_factor^(i-1), scale * growth_factor^i) where i ranges from 1 to num_finite_buckets inclusive. Must be > 0.
Declaration
[JsonProperty("scale")]
public virtual double? Scale { get; set; }Property Value
| Type | Description | 
|---|---|
| double? |