Values.OutputLogEventSourceRepresents a log event.
type nonrec t = {timestamp : Timestamp.t option;The time the event occurred, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.
*)message : EventMessage.t option;The data contained in the log event.
*)ingestionTime : Timestamp.t option;The time the event was ingested, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Long of Timestamp.t | `String of EventMessage.t ]) list ]