pub trait MonotonicCounter { // Required method fn add( &self, value: u64, attributes: Option<&Attributes>, context: Option<&dyn Context>, ); }
A counter that monotonically increases.
Increment a counter by a fixed amount.