Merge pull request #13681 from krajorama/native-latency-histograms

Add native histograms to latency/duration metrics
This commit is contained in:
Björn Rabenstein 2024-03-07 20:46:43 +01:00 committed by GitHub
commit 9acae57937
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 43 additions and 22 deletions

View file

@ -83,9 +83,12 @@ var (
)
sentBatchDuration = prometheus.NewHistogramVec(
prometheus.HistogramOpts{
Name: "sent_batch_duration_seconds",
Help: "Duration of sample batch send calls to the remote storage.",
Buckets: prometheus.DefBuckets,
Name: "sent_batch_duration_seconds",
Help: "Duration of sample batch send calls to the remote storage.",
Buckets: prometheus.DefBuckets,
NativeHistogramBucketFactor: 1.1,
NativeHistogramMaxBucketNumber: 100,
NativeHistogramMinResetDuration: 1 * time.Hour,
},
[]string{"remote"},
)