foundations 5.6.5

A Rust service foundations library.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Panic-related metrics.

use crate::telemetry::metrics::Counter;

/// Panic metrics.
#[crate::telemetry::metrics::metrics(crate_path = "crate", unprefixed)]
pub mod panics {
    /// Total number of panics observed.
    pub fn total() -> Counter;
}