(cherry picked from commit 65e56c9fb8)
Co-authored-by: Andres Martinez Gotor <andres.martinez@grafana.com>
This commit is contained in:
co-authored by
Andres Martinez Gotor
parent
b8aa31433b
commit
25e89ba295
@@ -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