Documentation
    Preparing search index...

    Interface AnalyticsSettings

    Analytics configuration forwarded to the SDK's internal tracker.

    Analytics is opt-out. The default mode is 'telemetry' — minimal, anonymous signals used for technical research and issue debugging. Set mode: 'off' to disable, or mode: 'full' to opt into the full event stream.

    interface AnalyticsSettings {
        mode?: AnalyticsMode;
        url?: string;
    }
    Index

    Properties

    Properties

    • 'off' — no events are collected or sent.
    • 'telemetry' — technical analytics only (default).
    • 'full' — full user-action event stream.
    'telemetry'
    
    url?: string

    Where to send events. Defaults to the hosted collector.

    Point this at a local endpoint to inspect what the SDK actually emits without reaching the network — the only way to verify analytics changes locally, since the hosted collector rejects requests from a development origin.