Skip to content

Commit 512054e

Browse files
fix(smoke): increase bucket size for upload/download metrics (#565)
1 parent 40244dd commit 512054e

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

pkg/check/smoke/metrics.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ func newMetrics(subsystem string) metrics {
9393
Subsystem: subsystem,
9494
Name: "data_upload_duration",
9595
Help: "Data upload duration through the /bytes endpoint.",
96+
Buckets: []float64{0.1, 0.25, 0.5, 1, 2.5, 5, 10, 25, 50, 100, 250, 600, 1200},
9697
},
9798
[]string{labelSizeBytes, labelNodeName},
9899
),
@@ -102,6 +103,7 @@ func newMetrics(subsystem string) metrics {
102103
Subsystem: subsystem,
103104
Name: "data_download_duration",
104105
Help: "Data download duration through the /bytes endpoint.",
106+
Buckets: []float64{0.1, 0.25, 0.5, 1, 2.5, 5, 10, 25, 50, 100, 250, 600, 1200},
105107
},
106108
[]string{labelSizeBytes, labelNodeName},
107109
),

0 commit comments

Comments
 (0)