Module Values.StatsSource

The minimum, maximum, average, and sum.

Sourcetype nonrec t = {
  1. min : Double.t option;
    (*

    The minimum of the usage statistics.

    *)
  2. max : Double.t option;
    (*

    The maximum among the usage statistics.

    *)
  3. avg : Double.t option;
    (*

    The average of the usage statistics.

    *)
  4. sum : Double.t option;
    (*

    The sum of the usage statistics.

    *)
}
Sourceval make : ?min:??? -> ?max:??? -> ?avg:??? -> ?sum:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t