Nev
Nev
Hmm, just been going through an old copy of the server code that I have access to and it does look like that it checks for the following (note: it...
> By "server code" do you mean the server code for the actual AppInsights ingestor? Yes > By "server code" do you mean the server code for the actual AppInsights...
This is planned, and scheduled as per the March 31, 2025 guidance.
I'm not sure I'm following... `console.log('this.appInsight', this.appInsight.trackEvent(event)); // Should show up in the app insight report --> transaction search ---> custom event select it I Agree, and the usage you...
The screen shot is only showing the notifications (telling me that the internal network requests are being sent), as the events are not showing I assume that you have the...
Well, technically a Zero response is an error on the client (normally not your code), it tends to be the response when the end-user has an Ad-Blocker installed that causes...
I'm not sure, what is the event "name" that is reporting the error status zero? `Microsoft.xxxx.Exception` or `Microsoft.xxxx.RemoteDependency`? If it's an `Exception` then it sounds like some sort of JS...
The fact that it's in the "Dependency Properties" section of the portal, this tells me that it's a `Microsoft.xxxx.RemoteDependency`, if it was an Exception then it would appear in the...
The Envelope is effectively a [`ITelemetryItem`](https://github.com/microsoft/ApplicationInsights-JS/blob/main/shared/AppInsightsCore/src/JavaScriptSDK.Interfaces/ITelemetryItem.ts) which describes some of the common values. There is no explicit documentation on what all of the values are as it varies depending on...
The dependency listener is only called for dependency (Ajax) requests (ie. XMLHttpRequest or fetch based requests) that are instrumented and will cause a dependency event to get sent. These events...