Module Values.AnomalyDetectorMissingDataActionSource

Specifies the action to take when data is missing during anomaly detection evaluation.

Sourcetype nonrec t = {
  1. markAsAnomaly : Boolean.t option;
    (*

    Marks missing data points as anomalies.

    *)
  2. skip : Boolean.t option;
    (*

    Skips evaluation when data is missing.

    *)
}
Sourceval make : ?markAsAnomaly:??? -> ?skip:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.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