1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
//! Mutable [`metrics::registry::Storage`] backed by a [`prometheus::Registry`].
//!
//! [`metrics::registry::Storage`]: metrics_util::registry::Storage
use std::{
collections::HashMap,
sync::{Arc, RwLock},
};
use sealed::sealed;
use crate::{metric, Metric};
use super::KeyName;
/// Thread-safe [`HashMap`] a [`Collection`] is built upon.
// TODO: Remove `Arc` here by implementing `metrics_util::registry::Storage` for
// `Arc<T>` via PR.
pub type Map<K, V> = Arc<RwLock<HashMap<K, V>>>;
/// Collection of [`Describable`] [`metric::Bundle`]s, stored in a mutable
/// [`Storage`].
///
/// [`Describable`]: metric::Describable
pub type Collection<M> = Map<KeyName, metric::Describable<Option<M>>>;
/// [`metrics::registry::Storage`] backed by a [`prometheus::Registry`] and
/// allowing to change a [`help` description] of the registered [`prometheus`]
/// metrics in runtime.
///
/// This [`metrics::registry::Storage`] is capable of registering metrics in its
/// [`prometheus::Registry`] on the fly. By default, the
/// [`prometheus::default_registry()`] is used.
///
/// # Errors
///
/// This mutable [`Storage`] returns [`metric::Fallible`] in its
/// [`metrics::registry::Storage`] interface, because it cannot panic, as is
/// called inside [`metrics::Registry`] and, so, may poison its inner locks.
/// That's why possible errors are passed through, up to the
/// [`metrics::Recorder`] using this [`Storage`], and should be resolved there.
///
/// [`metrics::Registry`]: metrics_util::registry::Registry
/// [`metrics::registry::Storage`]: metrics_util::registry::Storage
/// [`help` description]: prometheus::proto::MetricFamily::get_help
#[derive(Clone, Debug)]
pub struct Storage {
/// [`prometheus::Registry`] backing this mutable [`Storage`].
pub(crate) prometheus: prometheus::Registry,
/// [`Collection`] of [`prometheus::IntCounter`] metrics registered in this
/// mutable [`Storage`].
pub(super) counters: Collection<metric::PrometheusIntCounter>,
/// [`Collection`] of [`prometheus::Gauge`] metrics registered in this
/// mutable [`Storage`].
pub(super) gauges: Collection<metric::PrometheusGauge>,
/// [`Collection`] of [`prometheus::Histogram`] metrics registered in this
/// mutable [`Storage`].
pub(super) histograms: Collection<metric::PrometheusHistogram>,
}
#[sealed]
impl super::Get<Collection<metric::PrometheusIntCounter>> for Storage {
fn collection(&self) -> &Collection<metric::PrometheusIntCounter> {
&self.counters
}
}
#[sealed]
impl super::Get<Collection<metric::PrometheusGauge>> for Storage {
fn collection(&self) -> &Collection<metric::PrometheusGauge> {
&self.gauges
}
}
#[sealed]
impl super::Get<Collection<metric::PrometheusHistogram>> for Storage {
fn collection(&self) -> &Collection<metric::PrometheusHistogram> {
&self.histograms
}
}
impl Default for Storage {
fn default() -> Self {
Self {
prometheus: prometheus::default_registry().clone(),
counters: Collection::default(),
gauges: Collection::default(),
histograms: Collection::default(),
}
}
}
impl Storage {
/// Changes the [`help` description] of the [`prometheus`] `M`etric
/// identified by its `name`.
///
/// Accepts only the following [`prometheus`] `M`etrics:
/// - [`prometheus::IntCounter`], [`prometheus::IntCounterVec`]
/// - [`prometheus::Gauge`], [`prometheus::GaugeVec`]
/// - [`prometheus::Histogram`], [`prometheus::HistogramVec`]
///
/// Intended to be used in [`metrics::Recorder::describe_counter()`],
/// [`metrics::Recorder::describe_gauge()`] and
/// [`metrics::Recorder::describe_histogram()`] implementations.
///
/// [`help` description]: prometheus::proto::MetricFamily::get_help
pub fn describe<M>(&self, name: &str, description: String)
where
M: metric::Bundled,
<M as metric::Bundled>::Bundle: Clone,
Self: super::Get<Collection<<M as metric::Bundled>::Bundle>>,
{
// PANIC: `RwLock` usage is fully panic-safe here.
#![allow(
clippy::missing_panics_doc,
clippy::unwrap_in_result,
clippy::unwrap_used
)]
use super::Get as _;
let read_storage = self.collection().read().unwrap();
if let Some(metric) = read_storage.get(name) {
metric.description.store(Arc::new(description));
} else {
drop(read_storage);
let mut write_storage = self.collection().write().unwrap();
if let Some(metric) = write_storage.get(name) {
metric.description.store(Arc::new(description));
} else {
drop(write_storage.insert(
name.into(),
metric::Describable::only_description(description),
));
}
}
}
/// Initializes a new [`prometheus`] `M`etric (or reuses the existing one)
/// in the underlying [`prometheus::Registry`], satisfying the labeling of
/// the provided [`metrics::Key`] according to
/// [`metrics::registry::Storage`] interface semantics, and returns it for
/// use in a [`metrics::Registry`].
///
/// # Errors
///
/// If the underlying [`prometheus::Registry`] fails to register the newly
/// initialized [`prometheus`] `M`etric according to the provided
/// [`metrics::Key`].
///
/// [`metrics::Registry`]: metrics_util::registry::Registry
/// [`metrics::registry::Storage`]: metrics_util::registry::Storage
fn register<'k, M>(
&self,
key: &'k metrics::Key,
) -> prometheus::Result<Arc<Metric<M>>>
where
M: metric::Bundled + prometheus::core::Metric + Clone,
<M as metric::Bundled>::Bundle: metric::Bundle<Single = M>
+ prometheus::core::Collector
+ Clone
+ TryFrom<&'k metrics::Key, Error = prometheus::Error>
+ 'static,
Self: super::Get<Collection<<M as metric::Bundled>::Bundle>>,
{
// PANIC: `RwLock` usage is panic-safe here (considering the
// `prometheus::Registry::register()` does not).
#![allow(
clippy::missing_panics_doc,
clippy::unwrap_in_result,
clippy::unwrap_used
)]
use super::Get as _;
use metric::Bundle as _;
let name = key.name();
let mut bundle_opt = self
.collection()
.read()
.unwrap()
.get(name)
.and_then(|m| m.metric.clone());
let bundle = if let Some(bundle) = bundle_opt {
bundle
} else {
let mut storage = self.collection().write().unwrap();
bundle_opt = storage.get(name).and_then(|m| m.metric.clone());
if let Some(bundle) = bundle_opt {
bundle
} else {
let bundle: <M as metric::Bundled>::Bundle = key.try_into()?;
// This way we reuse existing `description` if it has been set
// before metric registration.
let mut entry = storage.entry(name.into()).or_default();
// We should register in `prometheus::Registry` before storing
// in our `Collection`. This way `metrics::Recorder`
// implementations using this `storage::Mutable` will be able to
// retry registration in `prometheus::Registry`.
// TODO: Re-register?
self.prometheus.register(Box::new(
entry.clone().map(|_| bundle.clone()),
))?;
entry.metric = Some(bundle.clone());
bundle
}
};
Ok(Arc::new(Metric::wrap(bundle.get_single_metric(key)?)))
}
/// Registers the provided [`prometheus`] `metric` in the underlying
/// [`prometheus::Registry`] in the way making it usable via this
/// [`metrics::registry::Storage`] (and, so, [`metrics`] crate interfaces).
///
/// Accepts only the following [`prometheus`] metrics:
/// - [`prometheus::IntCounter`], [`prometheus::IntCounterVec`]
/// - [`prometheus::Gauge`], [`prometheus::GaugeVec`]
/// - [`prometheus::Histogram`], [`prometheus::HistogramVec`]
///
/// # Errors
///
/// If the underlying [`prometheus::Registry`] fails to register the
/// provided `metric`.
///
/// [`metrics::registry::Storage`]: metrics_util::registry::Storage
pub fn register_external<M>(&self, metric: M) -> prometheus::Result<()>
where
M: metric::Bundled + prometheus::core::Collector,
<M as metric::Bundled>::Bundle:
prometheus::core::Collector + Clone + 'static,
Self: super::Get<Collection<<M as metric::Bundled>::Bundle>>,
{
// PANIC: `RwLock` usage is panic-safe here (considering the
// `prometheus::Registry::register()` does not).
#![allow(
clippy::missing_panics_doc,
clippy::unwrap_in_result,
clippy::unwrap_used
)]
use super::Get as _;
let name = metric
.desc()
.first()
.map(|d| d.fq_name.clone())
.unwrap_or_default();
let entry = metric::Describable::wrap(Some(metric.into_bundle()));
let mut storage = self.collection().write().unwrap();
// We should register in `prometheus::Registry` before storing in our
// `Collection`. This way `metrics::Recorder` implementations using this
// `storage::Mutable` will be able to retry registration in
// `prometheus::Registry`.
// TODO: Re-register?
self.prometheus
.register(Box::new(entry.clone().map(Option::unwrap)))?;
drop(storage.insert(name, entry));
Ok(())
}
}
impl metrics_util::registry::Storage<metrics::Key> for Storage {
// PANIC: We cannot panic inside `metrics_util::registry::Storage`
// implementation, because it will poison locks used inside
// `metrics_util::registry::Registry`. That's why we should pass
// possible errors through it and deal with them inside
// `metrics::Recorder` implementation.
type Counter = metric::Fallible<prometheus::IntCounter>;
type Gauge = metric::Fallible<prometheus::Gauge>;
type Histogram = metric::Fallible<prometheus::Histogram>;
fn counter(&self, key: &metrics::Key) -> Self::Counter {
self.register::<prometheus::IntCounter>(key).into()
}
fn gauge(&self, key: &metrics::Key) -> Self::Gauge {
self.register::<prometheus::Gauge>(key).into()
}
fn histogram(&self, key: &metrics::Key) -> Self::Histogram {
self.register::<prometheus::Histogram>(key).into()
}
}