-
Notifications
You must be signed in to change notification settings - Fork 287
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HttpCoreDiagnosticListener tracks exceptions #1362
Comments
Can you provide some example over what exceptions are thrown? Also, we current have posted an issue on Azure Support that seems related.
Could this be related? Regards |
This issue is about DependencyCollection module tracking an Exception event along with a DependencyTelemetry in the event of client side errors like DNS. The exception is sent to user ikey, along with DependencyTelemetry. If this exception is not tracked, then the only information DependencyCollector has is that call failed, and resultCode as "Faulted". We should modify the result code to be more useful, before removing the actual exception. Btw, DependencyCollection for .NET Framework does not track this exception, so making netcore also behave same is good for consistency point. |
When HttpClient call fails with an exception (like network issue), DiagnosticSource sends Exception events.
This event should be ignored: likely exception is handled, corresponding HTTP request is logged with error and it just creates noise.
Unhandled exceptions are tracked through ASP.NET Core, GenericHost, WebJob extensions, loggers, etc....
The text was updated successfully, but these errors were encountered: