Disabling/Enabling APM
This page explains the API to disable and enable App Performance Monitoring (APM) on React Native.
You can disable APM by calling the following API right after initializing the SDK. This completely prevents the SDK from collecting any performance data or executing any APM related logic:
// Enable
APM.setEnabled(true);
// Disable
APM.setEnabled(false);Last updated