Member Junction
    Preparing search index...

    Interface TelemetryCoalesceParams

    Telemetry params for request coalescing operations. Tracks when concurrent RunViews calls are merged into a single mega-batch, capturing the merge shape and entity composition for performance analysis.

    interface TelemetryCoalesceParams {
        CallerBoundaries: { count: number; start: number }[];
        CallerCount: number;
        Entities: string[];
        TotalEntityCount: number;
    }
    Index

    Properties

    CallerBoundaries: { count: number; start: number }[]

    Per-caller boundary info showing how many params each caller contributed

    CallerCount: number

    Number of independent RunViews callers that were merged into this batch

    Entities: string[]

    Entity/view names included in the mega-batch

    TotalEntityCount: number

    Total number of RunViewParams across all merged callers