Documentation - v6.7.1
    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: DatadogRum;
            },
        ): void;
        onRumStart?(options: OnRumStartOptions): void;
    }
    Index
    name: string