mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 21:38:05 -05:00
* PeerDAS: Implement the validation pipeline for data column sidecars received via gossip * Fix Terence's comment * Fix Terence's comment. * Fix Terence's comment.
15 lines
430 B
Go
15 lines
430 B
Go
package peerdas
|
|
|
|
import (
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
"github.com/prometheus/client_golang/prometheus/promauto"
|
|
)
|
|
|
|
var dataColumnComputationTime = promauto.NewHistogram(
|
|
prometheus.HistogramOpts{
|
|
Name: "beacon_data_column_sidecar_computation_milliseconds",
|
|
Help: "Captures the time taken to compute data column sidecars from blobs.",
|
|
Buckets: []float64{25, 50, 100, 250, 500, 750, 1000},
|
|
},
|
|
)
|