Module Values.StatisticsConfigurationSource

Configuration of evaluations for a profile job. This configuration can be used to select evaluations and override the parameters of selected evaluations.

Sourcetype nonrec t = {
  1. includedStatistics : StatisticList.t option;
    (*

    List of included evaluations. When the list is undefined, all supported evaluations will be included.

    *)
  2. overrides : StatisticOverrideList.t option;
    (*

    List of overrides for evaluations.

    *)
}
Sourceval make : ?includedStatistics:??? -> ?overrides:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of Statistic.t | `Structure of (string * [> `Map of ([> `String of ParameterName.t ] * [> `String of ParameterValue.t ]) list | `String of Statistic.t ]) list ] 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