Interface AnalyticsProvenanceExperimental

Why the numbers can be trusted, and what they cost. Presentation adapters surface this verbatim — they never re-derive or embellish it.

interface AnalyticsProvenance {
    attribution?: readonly string[];
    bounds: AnalyticsBounds;
    computedBy: AnalyticsComputeSite;
    degraded?: readonly AnalyticsDegradation[];
    notes?: readonly string[];
    pushdown: boolean;
}

Properties

attribution?: readonly string[]

Attribution strings a presentation must display when non-empty.

degraded?: readonly AnalyticsDegradation[]

Reasons the source degraded the aggregation, copied from Result.degraded.

notes?: readonly string[]

Free-form producer notes (bounded scan, alias fallback, timezone, …).

pushdown: boolean

True when the aggregation executed inside the source / server plan.