Module Metric.Counter

module Counter: sig .. end

type t = {
   name : string;
   unit_str : string;
   mutable value : int64;
   events : Metric.Atomic.t;
}
val all : (string, t) Batteries.Hashtbl.t
val make : string -> string -> t
val increase : t -> int64 -> unit
val print : 'a BatInnerIO.output -> t -> unit