Module Values.IgnoreNearExpectedSource

Configuration for threshold settings that determine when values near expected values should be ignored during anomaly detection.

Sourcetype nonrec t = {
  1. amount : IgnoreNearExpectedAmountDouble.t option;
    (*

    The absolute amount by which values can differ from expected values before being considered anomalous.

    *)
  2. ratio : IgnoreNearExpectedRatioDouble.t option;
    (*

    The ratio by which values can differ from expected values before being considered anomalous.

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