opentelemetry::metrics

Trait SyncCounter

Source
pub trait SyncCounter<T> {
    // Required method
    fn add(&self, value: T, attributes: &[KeyValue]);
}
Expand description

An SDK implemented instrument that records increasing values.

Required Methods§

Source

fn add(&self, value: T, attributes: &[KeyValue])

Records an increment to the counter.

Implementors§