Google Cloud Monitoring: Fix bucket bound for distributions (#56565)
This commit is contained in:
@@ -596,7 +596,12 @@ func calcBucketBound(bucketOptions cloudMonitoringBucketOptions, n int) string {
|
||||
case bucketOptions.ExponentialBuckets != nil:
|
||||
bucketBound = strconv.FormatInt(int64(bucketOptions.ExponentialBuckets.Scale*math.Pow(bucketOptions.ExponentialBuckets.GrowthFactor, float64(n-1))), 10)
|
||||
case bucketOptions.ExplicitBuckets != nil:
|
||||
bucketBound = fmt.Sprintf("%g", bucketOptions.ExplicitBuckets.Bounds[n])
|
||||
if n < len(bucketOptions.ExplicitBuckets.Bounds) {
|
||||
bucketBound = fmt.Sprintf("%g", bucketOptions.ExplicitBuckets.Bounds[n])
|
||||
} else {
|
||||
lastBound := bucketOptions.ExplicitBuckets.Bounds[len(bucketOptions.ExplicitBuckets.Bounds)-1]
|
||||
bucketBound = fmt.Sprintf("%g+", lastBound)
|
||||
}
|
||||
}
|
||||
return bucketBound
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user