use reth_metrics::{metrics::Gauge, Metrics}; /// Metrics for the `BasicBlockDownloader`. #[derive(Metrics)] #[metrics(scope = "consensus.engine.beacon")] pub(crate) struct BlockDownloaderMetrics { /// How many blocks are currently being downloaded. pub(crate) active_block_downloads: Gauge, }