pub trait AsyncInstrument<T>: Send + Sync { // Required method fn observe(&self, measurement: T, attributes: &[KeyValue]); }
An SDK implemented instrument that records measurements via callback.
Observes the state of the instrument.
It is only valid to call this within a callback.