Module Values.AnomalyTimeRangeSource

A time range that specifies when the observed unusual behavior in an anomaly started and ended. This is different from AnomalyReportedTimeRange, which specifies the time range when DevOps Guru opens and then closes an anomaly.

Sourcetype nonrec t = {
  1. startTime : Timestamp.t option;
    (*

    The time when the anomalous behavior started.

    *)
  2. endTime : Timestamp.t option;
    (*

    The time when the anomalous behavior ended.

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