Merge remote-tracking branch 'origin/release-v8.1' into back-merge-v8.1.1

This commit is contained in:
Michael Sproul
2026-03-02 09:20:25 +11:00
10 changed files with 122 additions and 18 deletions

View File

@@ -462,6 +462,13 @@ pub static SYNCING_CHAIN_BATCH_AWAITING_PROCESSING: LazyLock<Result<Histogram>>
]),
)
});
pub static SYNCING_CHAIN_BATCHES: LazyLock<Result<IntGaugeVec>> = LazyLock::new(|| {
try_create_int_gauge_vec(
"sync_batches",
"Number of batches in sync chains by sync type and state",
&["sync_type", "state"],
)
});
pub static SYNC_SINGLE_BLOCK_LOOKUPS: LazyLock<Result<IntGauge>> = LazyLock::new(|| {
try_create_int_gauge(
"sync_single_block_lookups",