Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions internal/metrics/helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,12 @@ func SmallCountBuckets() []float64 {

// BandwidthMbpsBuckets is for per-request throughput in MiB/s, covering
// everything from slow long-tail clients (a few MiB/s) up through saturated
// 10 GbE links (~1.2 GiB/s) and the parallel-stream-on-localhost ceiling.
// 10 GbE workstations (~1.2 GiB/s) and into the ~12 GiB/s range of 100 Gbps
// server NICs. Top bucket leaves headroom past the theoretical max so we
// can spot misattribution.
func BandwidthMbpsBuckets() []float64 {
return []float64{
1, 5, 10, 25, 50, 100, 250, 500, 1000, 2500, 5000,
1, 5, 10, 25, 50, 100, 250, 500, 1000, 2500, 5000, 10000, 15000,
}
}

Expand Down