Module Values.StatisticSetSource

Represents a set of statistics that describes a specific metric.

Sourcetype nonrec t = {
  1. sampleCount : DatapointValue.t;
    (*

    The number of samples used for the statistic set.

    *)
  2. sum : DatapointValue.t;
    (*

    The sum of values for the sample set.

    *)
  3. minimum : DatapointValue.t;
    (*

    The minimum value of the sample set.

    *)
  4. maximum : DatapointValue.t;
    (*

    The maximum value of the sample set.

    *)
}
Sourceval context_ : string
Sourceval make : sampleCount:DatapointValue.t -> sum:DatapointValue.t -> minimum:DatapointValue.t -> maximum:DatapointValue.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of DatapointValue.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