pub trait Histogram: Send + Sync + Debug {
// Required method
fn record(
&self,
value: f64,
attributes: Option<&Attributes>,
context: Option<&dyn Context>,
);
}
Available on non-PowerPC only.
Expand description
Collects a set of events with an event count and sum for all events.