Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Upgrading to the new version of the Application Insights JavaScript SDK can provide several advantages such as:
- Improved performance and bug fixes
- New features and functionalities
- Better compatibility with other technologies
- Enhanced security and data privacy
To allow for better API signatures, some of the API calls, such as trackPageView and trackException, have been updated. Running in Internet Explorer 8 and earlier versions of the browser isn't supported.
The telemetry envelope has field name and structure changes due to data schema updates.
Moved
context.operation
tocontext.telemetryTrace
. Some fields were also changed (operation.id
-->telemetryTrace.traceID
).To manually refresh the current pageview ID, for example, in single-page applications, use
appInsights.properties.context.telemetryTrace.traceID = Microsoft.ApplicationInsights.Telemetry.Util.generateW3CId()
.Note
To keep the trace ID unique, now use
Util.generateW3CId()
where you previously usedUtil.newId()
. Both ultimately end up being the operation ID.
If you're using the current application insights PRODUCTION SDK (1.0.20) and want to see if the new SDK works in runtime, update the URL depending on your current SDK loading scenario.
Download via CDN scenario: Update the JavaScript (Web) SDK Loader Script that you currently use to point to the following URL:
"https://js.monitor.azure.com/scripts/b/ai.3.gbl.min.js"
npm scenario: Call
downloadAndSetup
to download the full ApplicationInsights script from CDN and initialize it with a connection string:appInsights.downloadAndSetup({ connectionString: "Copy connection string from Application Insights Resource Overview", url: "https://js.monitor.azure.com/scripts/b/ai.3.gbl.min.js" });
Test in an internal environment to verify the monitoring telemetry is working as expected. If all works, update your API signatures appropriately to SDK v2 and deploy in your production environments.
- To learn more about the JavaScript SDK, see the Application Insights JavaScript SDK documentation.
- To learn about the Kusto Query Language and querying data in Log Analytics, see the Log query overview.