Analytics Configuration

Overview

SDK includes functionality for analytics and event tracking to monitor application performance and usage.

Analytics Usage

Disabling Analytics

If you need to disable analytics collection for privacy reasons or to comply with specific regulations, you can set isAnalyticsEnabled: false to completely disable all analytics functionality on the SDK side.

// Create configuration with analytics disabled
let modulesConfiguration = ModulesConfiguration(
    debugLogging: false,
    isAnalyticsEnabled: false, // Analytics disabled
    isClientListEnabled: true,
    isVPNProtocolLabelEnabled: true
)

See ModulesConfiguration.

Last updated

Was this helpful?