mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-11 18:04:18 +00:00
Check da_checker before doing a block lookup request (#5681)
* Check da_checker before doing a block lookup request * Ensure consistent handling of lookup result * use req resp pre import cache rather than da checker
This commit is contained in:
@@ -244,11 +244,19 @@ lazy_static! {
|
||||
"sync_parent_block_lookups",
|
||||
"Number of parent block lookups underway"
|
||||
);
|
||||
pub static ref SYNC_LOOKUP_CREATED: Result<IntCounter> = try_create_int_counter(
|
||||
"sync_lookups_created_total",
|
||||
"Total count of sync lookups created",
|
||||
);
|
||||
pub static ref SYNC_LOOKUP_DROPPED: Result<IntCounterVec> = try_create_int_counter_vec(
|
||||
"sync_lookups_dropped_total",
|
||||
"Total count of sync lookups dropped by reason",
|
||||
&["reason"]
|
||||
);
|
||||
pub static ref SYNC_LOOKUP_COMPLETED: Result<IntCounter> = try_create_int_counter(
|
||||
"sync_lookups_completed_total",
|
||||
"Total count of sync lookups completed",
|
||||
);
|
||||
|
||||
/*
|
||||
* Block Delay Metrics
|
||||
|
||||
Reference in New Issue
Block a user