ApplicationInsights-JS
ApplicationInsights-JS copied to clipboard
Microsoft Application Insights SDK for JavaScript
**Description/Screenshot** Currently snippet collects only [unhandled errors](https://github.com/microsoft/ApplicationInsights-JS/blob/main/AISKU/snippet/snippet.js#L278) but not unhandled rejections while sdk load. This can lead to missing rejections in analytic logs. **Steps to Reproduce** 1. Setup snippet with...
**Description/Screenshot** I'm using snippet to setup AppInsights in nextjs app. I track pageView events manually by watching route changes. So that I have `enableAutoRouteTracking: false` in my app Insights config....
**Is your feature request related to a problem? Please describe.** When using `trackException` it looks like it's not propagating the [cause](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/cause) of the error. This would be really helpful so...
**Is your feature request related to a problem? Please describe.** Support Core Web Vitals https://github.com/microsoft/ApplicationInsights-JS/issues/2092 **Describe the solution you'd like** Need additional standard metrics for tracking browser paint metrics Existing...
**Description/Screenshot** Hello, We use the Application Insights React plugin to track custom events in our React app. When we view those custom events in the Azure Portal an incorrect `client_OS`...
For example, if user click on a link from quick links webpart, will it show the webpart name as well. How can we track the webpart name
I have nextJs application. `Telemetry.ts` ``` import { ApplicationInsights } from '@microsoft/applicationinsights-web'; const appInsights = new ApplicationInsights({ config: { connectionString: 'InstrumentationKey=', }, }); appInsights.loadAppInsights(); export { appInsights }; ``` `Document.ts`...
**Description/Screenshot** When I set autoTrackPageVisitTime to true in the ApplicationInsights configuration, the first payload for PageVisitTime does not contain any custom parameters that I added using the addTelemetryInitialiser method.  (and others), for example [AISKU/package.json](https://github.com/microsoft/ApplicationInsights-JS/blob/main/AISKU/package.json#L70) ``` "@nevware21/ts-utils": ">= 0.9.5 < 2.x", "@nevware21/ts-async": ">= 0.2.4 < 2.x" ``` So...
**Is your feature request related to a problem? Please describe.** I can see 400, 500 error status for API call, but there's no error response for us to see, can...