// Copyright 2020 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 . use polkadot_node_subsystem_util::metrics::{self, prometheus}; #[derive(Clone)] pub(crate) struct MetricsInner { pub(crate) chain_api_requests: prometheus::CounterVec, pub(crate) make_runtime_api_request: prometheus::Histogram, } /// Runtime API metrics. #[derive(Default, Clone)] pub struct Metrics(pub(crate) Option); impl Metrics { pub fn on_request(&self, succeeded: bool) { if let Some(metrics) = &self.0 { if succeeded { metrics.chain_api_requests.with_label_values(&["succeeded"]).inc(); } else { metrics.chain_api_requests.with_label_values(&["failed"]).inc(); } } } pub fn on_cached_request(&self) { self.0 .as_ref() .map(|metrics| metrics.chain_api_requests.with_label_values(&["cached"]).inc()); } /// Provide a timer for `make_runtime_api_request` which observes on drop. pub fn time_make_runtime_api_request( &self, ) -> Option { self.0.as_ref().map(|metrics| metrics.make_runtime_api_request.start_timer()) } } impl metrics::Metrics for Metrics { fn try_register(registry: &prometheus::Registry) -> Result { let metrics = MetricsInner { chain_api_requests: prometheus::register( prometheus::CounterVec::new( prometheus::Opts::new( "polkadot_parachain_runtime_api_requests_total", "Number of Runtime API requests served.", ), &["success"], )?, registry, )?, make_runtime_api_request: prometheus::register( prometheus::Histogram::with_opts(prometheus::HistogramOpts::new( "polkadot_parachain_runtime_api_make_runtime_api_request", "Time spent within `runtime_api::make_runtime_api_request`", ))?, registry, )?, }; Ok(Metrics(Some(metrics))) } }