Values.LogAnomalyClassSourceInformation about an anomalous log event found within a log group.
type nonrec t = {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.
*)logAnomalyType : LogAnomalyType.t option;The type of log anomaly that has been detected.
*)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.
*)logEventId : LogEventId.t option;The ID of the log event.
*)explanation : Explanation.t option;The explanation for why the log event is considered an anomaly.
*)numberOfLogLinesOccurrences : NumberOfLogLinesOccurrences.t option;The number of log lines where this anomalous log event occurs.
*)logEventTimestamp : Timestamp.t option;The time of the first occurrence of the anomalous log event.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of NumberOfLogLinesOccurrences.t
| `String of LogStreamName.t
| `Timestamp of Timestamp.t ])
list ]