Module Values.PredictionTimeRangeSource

The time range during which anomalous behavior in a proactive anomaly or an insight is expected to occur.

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

    The time range during which a metric limit is expected to be exceeded. This applies to proactive insights only.

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

    The time when the behavior in a proactive insight is expected to end.

    *)
}
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