From 66aed0d0a47097ad03277915697402f46c920868 Mon Sep 17 00:00:00 2001 From: sandreim <54316454+sandreim@users.noreply.github.com> Date: Wed, 24 Nov 2021 16:12:08 +0200 Subject: [PATCH] fix provisioner metric docs (#4359) Signed-off-by: Andrei Sandu --- polkadot/node/core/provisioner/src/metrics.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/polkadot/node/core/provisioner/src/metrics.rs b/polkadot/node/core/provisioner/src/metrics.rs index 082ea11c5a..33129bfb78 100644 --- a/polkadot/node/core/provisioner/src/metrics.rs +++ b/polkadot/node/core/provisioner/src/metrics.rs @@ -23,9 +23,9 @@ struct MetricsInner { request_inherent_data: prometheus::Histogram, provisionable_data: prometheus::Histogram, - /// The dispute_statement.* metrics trak how many disputes/votes the runtime will have to process. It will count + /// The `dispute_statement_*` metrics track how many disputes/votes the runtime will have to process. It will count /// all recent statements meaning every dispute from last sessions: 10 min on Rococo, 60 min on Kusama and - /// 4 hours on Polkadot. The metrics are updated only when the node authors block, so values vary across nodes. + /// 4 hours on Polkadot. The metrics are updated only when the node authors a block, so values vary across nodes. dispute_statement_sets_requested: prometheus::Counter, dispute_statements_requested: prometheus::CounterVec, }