Values.RumEventSourceA structure that contains the information for one performance event that RUM collects from a user session with your application.
type nonrec t = {id : RumEventIdString.t;A unique ID for this event.
*)timestamp : Timestamp.t;The exact time that this event occurred.
*)type_ : String_.t;The JSON schema that denotes the type of event this is, such as a page load or a new session.
*)metadata : JsonValue.t option;Metadata about this event, which contains a JSON serialization of the identity of the user for this session. The user information comes from information such as the HTTP user-agent request header and document interface.
*)details : JsonValue.t;A string containing details about the event.
*)}val make :
?metadata:??? ->
id:RumEventIdString.t ->
timestamp:Timestamp.t ->
type_:String_.t ->
details:JsonValue.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `String of RumEventIdString.t | `Timestamp of Timestamp.t ])
list ]