This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Buffered connection management for collator-protocol (#6022)
* Extract metrics into a separate module * Introduce validators buffer * Integrate buffer into the subsystem * Only reconnect on new advertisements * Test * comma * doc comment * Make capacity buffer compile time non-zero * Add doc comments * nits * remove derives * review * better naming * check timeout * Extract interval stream into lib * Ensure collator disconnects after timeout * spellcheck * rename buf * Remove double interval * Add a log on timeout * Cleanup buffer on timeout
- Loading branch information
Showing
8 changed files
with
707 additions
and
165 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
123 changes: 123 additions & 0 deletions
123
node/network/collator-protocol/src/collator_side/metrics.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
// Copyright 2017-2022 Parity Technologies (UK) Ltd. | ||
// This file is part of Polkadot. | ||
|
||
// Polkadot is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
|
||
// Polkadot is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
|
||
// You should have received a copy of the GNU General Public License | ||
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
use polkadot_node_subsystem_util::metrics::{self, prometheus}; | ||
|
||
#[derive(Clone, Default)] | ||
pub struct Metrics(Option<MetricsInner>); | ||
|
||
impl Metrics { | ||
pub fn on_advertisment_made(&self) { | ||
if let Some(metrics) = &self.0 { | ||
metrics.advertisements_made.inc(); | ||
} | ||
} | ||
|
||
pub fn on_collation_sent_requested(&self) { | ||
if let Some(metrics) = &self.0 { | ||
metrics.collations_send_requested.inc(); | ||
} | ||
} | ||
|
||
pub fn on_collation_sent(&self) { | ||
if let Some(metrics) = &self.0 { | ||
metrics.collations_sent.inc(); | ||
} | ||
} | ||
|
||
/// Provide a timer for `process_msg` which observes on drop. | ||
pub fn time_process_msg(&self) -> Option<prometheus::prometheus::HistogramTimer> { | ||
self.0.as_ref().map(|metrics| metrics.process_msg.start_timer()) | ||
} | ||
|
||
/// Provide a timer for `distribute_collation` which observes on drop. | ||
pub fn time_collation_distribution( | ||
&self, | ||
label: &'static str, | ||
) -> Option<prometheus::prometheus::HistogramTimer> { | ||
self.0.as_ref().map(|metrics| { | ||
metrics.collation_distribution_time.with_label_values(&[label]).start_timer() | ||
}) | ||
} | ||
} | ||
|
||
#[derive(Clone)] | ||
struct MetricsInner { | ||
advertisements_made: prometheus::Counter<prometheus::U64>, | ||
collations_sent: prometheus::Counter<prometheus::U64>, | ||
collations_send_requested: prometheus::Counter<prometheus::U64>, | ||
process_msg: prometheus::Histogram, | ||
collation_distribution_time: prometheus::HistogramVec, | ||
} | ||
|
||
impl metrics::Metrics for Metrics { | ||
fn try_register( | ||
registry: &prometheus::Registry, | ||
) -> std::result::Result<Self, prometheus::PrometheusError> { | ||
let metrics = MetricsInner { | ||
advertisements_made: prometheus::register( | ||
prometheus::Counter::new( | ||
"polkadot_parachain_collation_advertisements_made_total", | ||
"A number of collation advertisements sent to validators.", | ||
)?, | ||
registry, | ||
)?, | ||
collations_send_requested: prometheus::register( | ||
prometheus::Counter::new( | ||
"polkadot_parachain_collations_sent_requested_total", | ||
"A number of collations requested to be sent to validators.", | ||
)?, | ||
registry, | ||
)?, | ||
collations_sent: prometheus::register( | ||
prometheus::Counter::new( | ||
"polkadot_parachain_collations_sent_total", | ||
"A number of collations sent to validators.", | ||
)?, | ||
registry, | ||
)?, | ||
process_msg: prometheus::register( | ||
prometheus::Histogram::with_opts( | ||
prometheus::HistogramOpts::new( | ||
"polkadot_parachain_collator_protocol_collator_process_msg", | ||
"Time spent within `collator_protocol_collator::process_msg`", | ||
) | ||
.buckets(vec![ | ||
0.001, 0.002, 0.005, 0.01, 0.025, 0.05, 0.1, 0.15, 0.25, 0.35, 0.5, 0.75, | ||
1.0, | ||
]), | ||
)?, | ||
registry, | ||
)?, | ||
collation_distribution_time: prometheus::register( | ||
prometheus::HistogramVec::new( | ||
prometheus::HistogramOpts::new( | ||
"polkadot_parachain_collator_protocol_collator_distribution_time", | ||
"Time spent within `collator_protocol_collator::distribute_collation`", | ||
) | ||
.buckets(vec![ | ||
0.001, 0.002, 0.005, 0.01, 0.025, 0.05, 0.1, 0.15, 0.25, 0.35, 0.5, 0.75, | ||
1.0, | ||
]), | ||
&["state"], | ||
)?, | ||
registry, | ||
)?, | ||
}; | ||
|
||
Ok(Metrics(Some(metrics))) | ||
} | ||
} |
Oops, something went wrong.