Module Values.LogAnomalyClassSource

Information about an anomalous log event found within a log group.

Sourcetype nonrec t = {
  1. logStreamName : LogStreamName.t option;
    (*

    The name of the Amazon CloudWatch log stream that the anomalous log event belongs to. A log stream is a sequence of log events that share the same source.

    *)
  2. logAnomalyType : LogAnomalyType.t option;
    (*

    The type of log anomaly that has been detected.

    *)
  3. logAnomalyToken : LogAnomalyToken.t option;
    (*

    The token where the anomaly was detected. This may refer to an exception or another location, or it may be blank for log anomalies such as format anomalies.

    *)
  4. logEventId : LogEventId.t option;
    (*

    The ID of the log event.

    *)
  5. explanation : Explanation.t option;
    (*

    The explanation for why the log event is considered an anomaly.

    *)
  6. numberOfLogLinesOccurrences : NumberOfLogLinesOccurrences.t option;
    (*

    The number of log lines where this anomalous log event occurs.

    *)
  7. logEventTimestamp : Timestamp.t option;
    (*

    The time of the first occurrence of the anomalous log event.

    *)
}
Sourceval make : ?logStreamName:??? -> ?logAnomalyType:??? -> ?logAnomalyToken:??? -> ?logEventId:??? -> ?explanation:??? -> ?numberOfLogLinesOccurrences:??? -> ?logEventTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of NumberOfLogLinesOccurrences.t | `String of LogStreamName.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