Enable a framework extension for Application Insights JavaScript SDK
In addition to the core SDK, there are also plugins available for specific frameworks, such as the React plugin, the React Native plugin, and the Angular plugin.
These plugins provide extra functionality and integration with the specific framework.
- Install the JavaScript SDK.
- You must be using a version >= 2.0.0 of
@microsoft/applicationinsights-web
. This plugin only works in react-native apps. It doesn't work with apps using the Expo framework or Create React Native App, which is based on the Expo framework.
The React Native plugin for Application Insights JavaScript SDK enables:
Track exceptions
Collect device information
By default, this plugin automatically collects:
- Unique Device ID (Also known as Installation ID.)
- Device Model Name (Such as iPhone XS, Samsung Galaxy Fold, Huawei P30 Pro etc.)
- Device Type (For example, handset, tablet, etc.)
Disable automatic device info collection
Use your own device info collection class
Override the device information
To add a plug-in, follow the steps in this section.
React Native Plugin
By default, the React Native Plugin relies on the
react-native-device-info
package. You must install and link to this package. Keep thereact-native-device-info
package up to date to collect the latest device names using your app.Since v3, support for accessing the DeviceInfo has been abstracted into an interface
IDeviceInfoModule
to enable you to use / set your own device info module. This interface uses the same function names and resultreact-native-device-info
.npm install --save @microsoft/applicationinsights-react-native @microsoft/applicationinsights-web npm install --save react-native-device-info react-native link react-native-device-info
React Native Manual Device Plugin
If you're using React Native Expo, add the React Native Manual Device Plugin instead of the React Native Plugin. The React Native Plugin uses the
react-native-device-info package
package, which React Native Expo doesn't support.npm install --save @microsoft/applicationinsights-react-native @microsoft/applicationinsights-web
Note
On March 31, 2025, support for instrumentation key ingestion will end. Instrumentation key ingestion will continue to work, but we'll no longer provide updates or support for the feature. Transition to connection strings to take advantage of new capabilities.
React Native Plug-in
To use this plugin, you need to construct the plugin and add it as an
extension
to your existing Application Insights instance.import { ApplicationInsights } from '@microsoft/applicationinsights-web'; import { ReactNativePlugin } from '@microsoft/applicationinsights-react-native'; // *** Add the Click Analytics plug-in. *** // import { ClickAnalyticsPlugin } from '@microsoft/applicationinsights-clickanalytics-js'; var RNPlugin = new ReactNativePlugin(); // *** Add the Click Analytics plug-in. *** /* var clickPluginInstance = new ClickAnalyticsPlugin(); var clickPluginConfig = { autoCapture: true }; */ var appInsights = new ApplicationInsights({ config: { connectionString: 'YOUR_CONNECTION_STRING_GOES_HERE', // *** If you're adding the Click Analytics plug-in, delete the next line. *** extensions: [RNPlugin] // *** Add the Click Analytics plug-in. *** /* extensions: [RNPlugin, clickPluginInstance], extensionConfig: { [clickPluginInstance.identifier]: clickPluginConfig } */ } }); appInsights.loadAppInsights();
React Native Manual Device Plugin
To use this plugin, you must either disable automatic device info collection or use your own device info collection class after you add the extension to your code.
Construct the plugin and add it as an
extension
to your existing Application Insights instance.import { ApplicationInsights } from '@microsoft/applicationinsights-web'; import { ReactNativePlugin } from '@microsoft/applicationinsights-react-native'; var RNMPlugin = new ReactNativePlugin(); var appInsights = new ApplicationInsights({ config: { instrumentationKey: 'YOUR_INSTRUMENTATION_KEY_GOES_HERE', extensions: [RNMPlugin] } }); appInsights.loadAppInsights();
Do one of the following:
Disable automatic device info collection.
import { ApplicationInsights } from '@microsoft/applicationinsights-web'; var RNMPlugin = new ReactNativeManualDevicePlugin(); var appInsights = new ApplicationInsights({ config: { instrumentationKey: 'YOUR_INSTRUMENTATION_KEY_GOES_HERE', disableDeviceCollection: true, extensions: [RNMPlugin] } }); appInsights.loadAppInsights();
Use your own device info collection class.
import { ApplicationInsights } from '@microsoft/applicationinsights-web'; // Simple inline constant implementation const myDeviceInfoModule = { getModel: () => "deviceModel", getDeviceType: () => "deviceType", // v5 returns a string while latest returns a promise getUniqueId: () => "deviceId", // This "may" also return a Promise<string> }; var RNMPlugin = new ReactNativeManualDevicePlugin(); RNMPlugin.setDeviceInfoModule(myDeviceInfoModule); var appInsights = new ApplicationInsights({ config: { instrumentationKey: 'YOUR_INSTRUMENTATION_KEY_GOES_HERE', extensions: [RNMPlugin] } }); appInsights.loadAppInsights();
If you want to add the Click Analytics plug-in:
Uncomment the lines for Click Analytics.
Do one of the following, depending on which plug-in you're adding:
- For React, delete
extensions: [reactPlugin],
. - For React Native, delete
extensions: [RNPlugin]
. - For Angular, delete
extensions: [angularPlugin],
.
- For React, delete
See Use the Click Analytics plug-in to continue with the setup process.
This section covers configuration settings for the framework extensions for Application Insights JavaScript SDK.
React Native doesn't track router changes but does track page views.
The tracking of uncaught exceptions is enabled by default. If you want to disable the tracking of uncaught exceptions, set disableExceptionCollection
to true
.
import { ApplicationInsights } from '@microsoft/applicationinsights-web';
var RNPlugin = new ReactNativePlugin();
var appInsights = new ApplicationInsights({
config: {
connectionString: 'YOUR_CONNECTION_STRING_GOES_HERE',
disableExceptionCollection: true,
extensions: [RNPlugin]
}
});
appInsights.loadAppInsights();
- React Native Plugin: In addition to user agent info from the browser, which is collected by Application Insights web package, React Native also collects device information. Device information is automatically collected when you add the plug-in.
- React Native Manual Device Plugin: Depending on how you configured the plugin when you added the extension to your code, this plugin either:
- Doesn't collect device information
- Uses your own device info collection class
If you don’t want to collect the device information, you can set disableDeviceCollection
to true
.
import { ApplicationInsights } from '@microsoft/applicationinsights-web';
var RNPlugin = new ReactNativePlugin();
var appInsights = new ApplicationInsights({
config: {
connectionString: 'YOUR_CONNECTION_STRING_GOES_HERE',
disableDeviceCollection: true,
extensions: [RNPlugin]
}
});
appInsights.loadAppInsights();
If you want to override your own device’s information, you can use myDeviceInfoModule
to collect your own device information.
import { ApplicationInsights } from '@microsoft/applicationinsights-web';
// Simple inline constant implementation
const myDeviceInfoModule = {
getModel: () => "deviceModel",
getDeviceType: () => "deviceType",
// v5 returns a string while latest returns a promise
getUniqueId: () => "deviceId", // This "may" also return a Promise<string>
};
var RNPlugin = new ReactNativePlugin();
RNPlugin.setDeviceInfoModule(myDeviceInfoModule);
var appInsights = new ApplicationInsights({
config: {
connectionString: 'YOUR_CONNECTION_STRING_GOES_HERE',
extensions: [RNPlugin]
}
});
appInsights.loadAppInsights();
Use the IDeviceInfoModule
interface to abstract how the plug-in can access the Device Info. This interface is a stripped down version of the react-native-device-info
interface and is mostly supplied for testing.
export interface IDeviceInfoModule {
/**
* Returns the Device Model
*/
getModel: () => string;
/**
* Returns the device type
*/
getDeviceType: () => string;
/**
* Returns the unique Id for the device. To support both the current version and previous
* versions react-native-device-info, this may return either a `string` or `Promise<string>`.
* When a promise is returned, the plugin will "wait" for the promise to `resolve` or `reject`
* before processing any events. This WILL cause telemetry to be BLOCKED until either of these
* states, so when returning a Promise, it MUST `resolve` or `reject`. Tt can't just never resolve.
* There is a default timeout configured via `uniqueIdPromiseTimeout` to automatically unblock
* event processing when this issue occurs.
*/
getUniqueId: () => Promise<string> | string;
}
If events are getting "blocked" because the Promise
returned via getUniqueId
is never resolved / rejected, you can call setDeviceId()
on the plugin to "unblock" this waiting state. There is also an automatic timeout configured via uniqueIdPromiseTimeout
(defaults to 5 seconds), which will internally call setDeviceId()
with any previously configured value.
Currently unavailable.
This section provides answers to common questions.
The browser passes the User Agent string in the HTTP header of the request. The Application Insights ingestion service uses UA Parser to generate the fields you see in the data tables and experiences. As a result, Application Insights users are unable to change these fields.
Occasionally, this data might be missing or inaccurate if the user or enterprise disables sending User Agent in browser settings. The UA Parser regexes might not include all device information. Or Application Insights might not have adopted the latest updates.