pub trait CounterOps: Send + Sync + 'static + Debug { // Required method fn increase(&self, val: u64); }
Counter metric operations.
Increase record by val.
val