Module Metric.Atomic

module Atomic: sig .. end

type t = {
   name : string;
   mutable count : int64;
   mutable first_last : (Clock.Time.t * Clock.Time.t) option;
}
val all : (string, t) Batteries.Hashtbl.t
val make : string -> t
val fire : t -> unit
val print : 'a BatInnerIO.output -> t -> unit