Values.InputLogEventSourceRepresents a log event, which is a record of activity that was recorded by the application or resource being monitored.
type nonrec t = {timestamp : Timestamp.t;The time the event occurred, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.
*)message : EventMessage.t;The raw event message. Each log event can be no larger than 1 MB.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Long of Timestamp.t | `String of EventMessage.t ]) list ]