storage: instantiate correct block ranges

This commit is contained in:
Fabian Reinartz 2017-08-24 12:36:07 +02:00
parent 7ebd74b84b
commit 0c81d5f719
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ type Options struct {
func Open(path string, r prometheus.Registerer, opts *Options) (*tsdb.DB, error) {
// Start with smallest block duration and create exponential buckets until the exceed the
// configured maximum block duration.
rngs := tsdb.ExponentialBlockRanges(int64(time.Duration(opts.MinBlockDuration).Seconds()*1000), 3, 10)
rngs := tsdb.ExponentialBlockRanges(int64(time.Duration(opts.MinBlockDuration).Seconds()*1000), 10, 3)
for i, v := range rngs {
if v > int64(time.Duration(opts.MaxBlockDuration).Seconds()*1000) {