Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Fix provisioner metrics doc typo #4359

Merged
merged 1 commit into from
Nov 24, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions node/core/provisioner/src/metrics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<prometheus::U64>,
dispute_statements_requested: prometheus::CounterVec<prometheus::U64>,
}
Expand Down