Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RumEvent

import type { RumEvent } from "https://aws-api.deno.dev/v0.3/services/rum.ts?docs=full";

A structure that contains the information for one performance event that RUM collects from a user session with your application.

interface RumEvent {
details: jsonP.JSONValue;
id: string;
metadata?: jsonP.JSONValue | null;
timestamp: Date | number;
type: string;
}

§Properties

§

A string containing details about the event.

§
id: string
[src]

A unique ID for this event.

§
metadata?: jsonP.JSONValue | null
[src]

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.

§
timestamp: Date | number
[src]

The exact time that this event occurred.

§
type: string
[src]

The JSON schema that denotes the type of event this is, such as a page load or a new session.