Module Values.HistogramEntrySource

An entry in a histogram for a statistic. A histogram maps the range of observed values on the X axis, and the prevalence of each value on the Y axis.

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

    The value of the entry.

    *)
  2. count : Integer.t option;
    (*

    The prevalence of the entry.

    *)
}
Sourceval make : ?value:??? -> ?count:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `Integer of Integer.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