Module Values.AnomalousLogGroupSource

An Amazon CloudWatch log group that contains log anomalies and is used to generate an insight.

Sourcetype nonrec t = {
  1. logGroupName : LogGroupName.t option;
    (*

    The name of the CloudWatch log group.

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

    The time the anomalous log events began. The impact start time indicates the time of the first log anomaly event that occurs.

    *)
  3. impactEndTime : Timestamp.t option;
    (*

    The time the anomalous log events stopped.

    *)
  4. numberOfLogLinesScanned : NumberOfLogLinesScanned.t option;
    (*

    The number of log lines that were scanned for anomalous log events.

    *)
  5. logAnomalyShowcases : LogAnomalyShowcases.t option;
    (*

    The log anomalies in the log group. Each log anomaly displayed represents a cluster of similar anomalous log events.

    *)
}
Sourceval make : ?logGroupName:??? -> ?impactStartTime:??? -> ?impactEndTime:??? -> ?numberOfLogLinesScanned:??? -> ?logAnomalyShowcases:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of NumberOfLogLinesScanned.t | `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `Integer of NumberOfLogLinesOccurrences.t | `String of LogStreamName.t | `Timestamp of Timestamp.t ]) list ] list ]) list ] list | `String of LogGroupName.t | `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