mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-21 22:04:44 +00:00
Fix beacon_chain metrics descriptions (#6576)
n/a Just fixed a small mistake in the metrics description.
This commit is contained in:
@@ -260,7 +260,7 @@ pub static UNAGGREGATED_ATTESTATION_GOSSIP_VERIFICATION_TIMES: LazyLock<Result<H
|
|||||||
LazyLock::new(|| {
|
LazyLock::new(|| {
|
||||||
try_create_histogram(
|
try_create_histogram(
|
||||||
"beacon_unaggregated_attestation_gossip_verification_seconds",
|
"beacon_unaggregated_attestation_gossip_verification_seconds",
|
||||||
"Full runtime of aggregated attestation gossip verification",
|
"Full runtime of unaggregated attestation gossip verification",
|
||||||
)
|
)
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -370,7 +370,7 @@ pub static ATTESTATION_PROCESSING_STATE_SKIP_TIMES: LazyLock<Result<Histogram>>
|
|||||||
LazyLock::new(|| {
|
LazyLock::new(|| {
|
||||||
try_create_histogram(
|
try_create_histogram(
|
||||||
"beacon_attestation_processing_state_skip_seconds",
|
"beacon_attestation_processing_state_skip_seconds",
|
||||||
"Time spent on reading the state during attestation processing",
|
"Time spent on skipping the state during attestation processing",
|
||||||
)
|
)
|
||||||
});
|
});
|
||||||
pub static ATTESTATION_PROCESSING_SIGNATURE_SETUP_TIMES: LazyLock<Result<Histogram>> =
|
pub static ATTESTATION_PROCESSING_SIGNATURE_SETUP_TIMES: LazyLock<Result<Histogram>> =
|
||||||
@@ -1334,13 +1334,14 @@ pub static BEACON_BLOCK_DELAY_OBSERVED_SLOT_START: LazyLock<Result<IntGauge>> =
|
|||||||
)
|
)
|
||||||
});
|
});
|
||||||
|
|
||||||
pub static BEACON_BLOB_DELAY_ALL_OBSERVED_SLOT_START: LazyLock<Result<IntGauge>> =
|
pub static BEACON_BLOB_DELAY_ALL_OBSERVED_SLOT_START: LazyLock<Result<IntGauge>> = LazyLock::new(
|
||||||
LazyLock::new(|| {
|
|| {
|
||||||
try_create_int_gauge(
|
try_create_int_gauge(
|
||||||
"beacon_blob_delay_all_observed_slot_start",
|
"beacon_blob_delay_all_observed_slot_start",
|
||||||
"Duration between the start of the block's slot and the time the block was observed.",
|
"Duration between the start of the block's slot and the time when all blobs have been observed.",
|
||||||
)
|
)
|
||||||
});
|
},
|
||||||
|
);
|
||||||
|
|
||||||
pub static BEACON_BLOCK_DELAY_CONSENSUS_VERIFICATION_TIME: LazyLock<Result<IntGauge>> =
|
pub static BEACON_BLOCK_DELAY_CONSENSUS_VERIFICATION_TIME: LazyLock<Result<IntGauge>> =
|
||||||
LazyLock::new(|| {
|
LazyLock::new(|| {
|
||||||
|
|||||||
Reference in New Issue
Block a user