Module Values.AnomalySource

Details about an anomaly in a specific metric of application profile. The anomaly is detected using analysis of the metric data over a period of time.

Sourcetype nonrec t = {
  1. instances : AnomalyInstances.t option;
    (*

    A list of the instances of the detected anomalies during the requested period.

    *)
  2. metric : Metric.t option;
    (*

    Details about the metric that the analysis used when it detected the anomaly. The metric includes the name of the frame that was analyzed with the type and thread states used to derive the metric value for that frame.

    *)
  3. reason : String_.t option;
    (*

    The reason for which metric was flagged as anomalous.

    *)
}
Sourceval make : ?instances:??? -> ?metric:??? -> ?reason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Enum of string ]) list | `Timestamp of Timestamp.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.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