Documentation
    Preparing search index...

    Interface RumPluginExperimental

    Plugin interface of the RUM browser SDK.

    The plugins API is unstable and experimental, and may change without notice. Please use only plugins provided by Datadog matching the version of the SDK you are using.

    interface RumPlugin {
        name: string;
        getConfigurationTelemetry(): Record<string, unknown>;
        onInit(
            options: {
                initConfiguration: RumInitConfiguration;
                publicApi: RumGlobal;
            },
        ): void;
        onRumStart(options: OnRumStartOptions): void;
    }
    Index

    Properties

    name: string

    Methods