Module Values_0.NumericalAggregationFunctionSource

Aggregation for numerical values.

Sourcetype nonrec t = {
  1. simpleNumericalAggregation : SimpleNumericalAggregationFunction.t option;
    (*

    Built-in aggregation functions for numerical values. SUM: The sum of a dimension or measure. AVERAGE: The average of a dimension or measure. MIN: The minimum value of a dimension or measure. MAX: The maximum value of a dimension or measure. COUNT: The count of a dimension or measure. DISTINCT_COUNT: The count of distinct values in a dimension or measure. VAR: The variance of a dimension or measure. VARP: The partitioned variance of a dimension or measure. STDEV: The standard deviation of a dimension or measure. STDEVP: The partitioned standard deviation of a dimension or measure. MEDIAN: The median value of a dimension or measure.

    *)
  2. percentileAggregation : PercentileAggregation.t option;
    (*

    An aggregation based on the percentile of values in a dimension or measure.

    *)
}
Sourceval make : ?simpleNumericalAggregation:??? -> ?percentileAggregation:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Double of PercentileValue.t ]) list ]) 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