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

    Interface ComponentStats

    Aggregated render statistics for a component within retained history.

    interface ComponentStats {
        avgDuration: number;
        lastRender: number;
        renders: number;
        totalDuration: number;
    }
    Index

    Properties

    avgDuration: number

    Average retained render duration in milliseconds.

    lastRender: number

    Timestamp of the latest retained render for the component.

    renders: number

    Number of retained render entries for the component.

    totalDuration: number

    Sum of retained render durations in milliseconds.