Skip to content

Commit

Permalink
Add another series bucket
Browse files Browse the repository at this point in the history
Signed-off-by: Filip Petkovski <filip.petkovsky@gmail.com>
  • Loading branch information
fpetkovski committed Feb 8, 2023
1 parent f393642 commit 157889e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/store/telemetry.go
Expand Up @@ -102,12 +102,12 @@ func NewInstrumentedStoreServer(reg prometheus.Registerer, store storepb.StoreSe
seriesRequested: promauto.With(reg).NewHistogram(prometheus.HistogramOpts{
Name: "thanos_store_server_series_requested",
Help: "Number of requested series for Series calls",
Buckets: []float64{1, 10, 100, 1000, 10000, 100000},
Buckets: []float64{1, 10, 100, 1000, 10000, 100000, 1000000},
}),
chunksRequested: promauto.With(reg).NewHistogram(prometheus.HistogramOpts{
Name: "thanos_store_server_chunks_requested",
Help: "Number of requested chunks for Series calls",
Buckets: []float64{1, 100, 1000, 10000, 100000, 10000000, 100000000, 1000000000, 10000000000},
Buckets: []float64{1, 100, 1000, 10000, 100000, 10000000, 100000000, 1000000000},
}),
}
}
Expand Down

0 comments on commit 157889e

Please sign in to comment.