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

    Interface MonitorSnapshot

    Complete point-in-time state collected by a monitor instance.

    interface MonitorSnapshot {
        events: EventSnapshot;
        network: NetworkSnapshot;
        performance: PerformanceSnapshot;
        react: ReactSnapshot;
        timestamp: number;
        webVitals: WebVitalsSnapshot;
    }
    Index

    Properties

    Custom application events emitted through the monitor event API.

    Network request history and rolling request statistics.

    performance: PerformanceSnapshot

    Browser performance metrics such as FPS, memory, long tasks, and CLS.

    React render history and per-component render statistics.

    timestamp: number

    Unix timestamp in milliseconds for when the combined snapshot was computed.

    Standard Web Vitals metrics collected from the browser.