monitor-api - v1.3.0
    Preparing search index...

    Interface MonitorEvent

    Custom application event recorded by the event collector.

    interface MonitorEvent {
        data: Record<string, unknown> | null;
        id: string;
        label: string;
        timestamp: number;
    }
    Index

    Properties

    Properties

    data: Record<string, unknown> | null

    Optional structured event payload.

    id: string

    Unique event id generated by the collector.

    label: string

    Application-defined event label.

    timestamp: number

    Unix timestamp in milliseconds for when the event was recorded.