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

    Interface ReactCollectorConfig

    Configuration for the React collector.

    interface ReactCollectorConfig {
        includeZeroDuration?: boolean;
        maxFiberVisits?: number;
        maxHistory: number;
        slowThreshold: number;
    }
    Index

    Properties

    includeZeroDuration?: boolean

    Includes fibers whose profiling duration is zero. Defaults to false.

    maxFiberVisits?: number

    Maximum fibers visited per commit. Defaults to 10,000; use Infinity to disable.

    maxHistory: number

    Maximum number of render entries to retain.

    slowThreshold: number

    Duration in milliseconds used to classify a render as slow.