Module Values.MetricQueryValueSource

The aggregated values of the metric.

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

    The minimum of the values of all data points collected during the aggregation period.

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

    The maximum of the values of all the data points collected during the aggregation period.

    *)
  3. sum : Sum.t option;
    (*

    The sum of the values of all data points collected during the aggregation period.

    *)
  4. avg : Avg.t option;
    (*

    The average of the values of all data points collected during the aggregation period.

    *)
  5. std : Std.t option;
    (*

    The standard deviation of the values of all data points collected during the aggregation period.

    *)
  6. p90 : P90.t option;
    (*

    The 90th percentile of the values of all data points collected during the aggregation period.

    *)
}
Sourceval make : ?min:??? -> ?max:??? -> ?sum:??? -> ?avg:??? -> ?std:??? -> ?p90:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Min.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