Skip to content

Commit

Permalink
Change block_arrival_latency buckets to exponential format (#8065)
Browse files Browse the repository at this point in the history
Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com>
Co-authored-by: Raul Jordan <raul@prysmaticlabs.com>
Co-authored-by: terence tsao <terence@prysmaticlabs.com>
  • Loading branch information
4 people committed Dec 14, 2020
1 parent b9848dc commit 4d1f01a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beacon-chain/sync/metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ var (
prometheus.HistogramOpts{
Name: "block_arrival_latency_milliseconds",
Help: "Captures blocks propagation time. Blocks arrival in milliseconds distribution",
Buckets: []float64{1000, 2000, 3000, 4000, 5000, 6000},
Buckets: []float64{250, 500, 1000, 1500, 2000, 4000, 8000, 16000},
},
)
)
Expand Down

0 comments on commit 4d1f01a

Please sign in to comment.