Drop stuck lookups (#5824)

* Drop stuck lookups
This commit is contained in:
Lion - dapplion
2024-05-23 14:46:05 +02:00
committed by GitHub
parent 8762d82adf
commit 17d9086df3
5 changed files with 82 additions and 26 deletions

View File

@@ -257,9 +257,9 @@ lazy_static! {
"sync_lookups_completed_total",
"Total count of sync lookups completed",
);
pub static ref SYNC_LOOKUPS_STUCK: Result<IntGauge> = try_create_int_gauge(
"sync_lookups_stuck",
"Current count of sync lookups that may be stuck",
pub static ref SYNC_LOOKUPS_STUCK: Result<IntCounter> = try_create_int_counter(
"sync_lookups_stuck_total",
"Total count of sync lookups that are stuck and dropped",
);
/*