From 538dcb79c44ed81e38afc22620930981f64ae27f Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Mon, 9 Feb 2026 17:47:11 +0000 Subject: [PATCH] fix(docs): correct metric name and port in validator guide - Fix reth_payloads_resolved_block to use port 9000 (reth metrics) instead of 8002 (consensus) - Fix consensus voter metric name from consensus_engine_consensus_voter_inbound_messages_total to consensus_engine_epoch_manager_simplex_batcher_inbound_messages_total (matches metrics glossary table) Amp-Thread-ID: https://ampcode.com/threads/T-019c4383-230b-708f-82b1-dea0c6406bef Co-authored-by: Amp --- src/pages/guide/node/operate-validator.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/guide/node/operate-validator.mdx b/src/pages/guide/node/operate-validator.mdx index 7d869a3..3d93997 100644 --- a/src/pages/guide/node/operate-validator.mdx +++ b/src/pages/guide/node/operate-validator.mdx @@ -78,7 +78,7 @@ your validator might've been blocked due to double-signing a block. In that case Your validator is currently the leader and proposing blocks. Check proposal activity: ```bash # Number of blocks your node has built and resolved -curl -s localhost:8002/metrics | grep reth_payloads_resolved_block +curl -s localhost:9000/metrics | grep reth_payloads_resolved_block ``` If this counter is increasing, your validator is actively proposing blocks. @@ -89,7 +89,7 @@ Your validator is voting on blocks proposed by others (notarization and finaliza ```bash # Inbound voting messages (should increase steadily) -curl -s localhost:8002/metrics | grep consensus_engine_consensus_voter_inbound_messages_total | grep data_0 +curl -s localhost:8002/metrics | grep consensus_engine_epoch_manager_simplex_batcher_inbound_messages_total | grep data_0 ``` This counter should increase steadily when your node is participating in consensus.