You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Find the highest inclusive of the bucket upper bound
// and emit directly to it. Since we use BucketPairs to derive
// buckets there will always be an inclusive bucket as
// we always have a math.MaxFloat64 bucket.
I just saw this panic:
panic: runtime error: index out of range [101] with length 101 goroutine 1904106 [running]: github.com/uber-go/tally.(*histogram).RecordValue(0xc000161810, 0x3bd1507?) external/com_github_uber_go_tally/stats.go:381
This is on the go-code monorepo, which I believe is on the v3 branch.
I used: var BucketsPercent = tally.MustMakeLinearValueBuckets(0.00, 0.01, 100) with this.
The text was updated successfully, but these errors were encountered:
Despite this comment:
tally/stats.go
Lines 374 to 377 in a80396b
I just saw this panic:
The panic line:
tally/stats.go
Line 381 in a80396b
This is on the go-code monorepo, which I believe is on the v3 branch.
I used:
var BucketsPercent = tally.MustMakeLinearValueBuckets(0.00, 0.01, 100)
with this.The text was updated successfully, but these errors were encountered: