Module Values.LogEventSource

This structure contains the information for one sample log event that is associated with an anomaly found by a log anomaly detector.

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

    The time stamp of the log event.

    *)
  2. message : EventMessage.t option;
    (*

    The message content of the log event.

    *)
}
Sourceval make : ?timestamp:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Timestamp.t | `String of EventMessage.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