-
Notifications
You must be signed in to change notification settings - Fork 295
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
Endpoint availability is not exposed to the caller code #1974
Comments
#1887 would solve this issue. |
Thank you, looks very promising. |
It is expected to be part of next beta and stable. |
Thank you. Could it improve your solution if the delegate allows you to collect failures also? |
The PR is not final code. Feel free to add comments in the PR. |
@ivshch PR has modified code. It should cover your scenario. Could you please check? |
Thank you, I am analyzing the change. Am I right assuming the HttpRequestException would be propagated further without being handled in Transmission? |
I have checked the modified code. This implementation does not allow us to proceed if the HttpRequestException has occurred. |
This issue is stale because it has been open 300 days with no activity. Remove stale label or comment or this will be closed in 7 days. |
Bug description
Our current task requires to write the human-readable file logs only at the moments when the AppInsights endpoint is unreachable.
This is quite close to what ServerTelemetryChannel does, but without gzipping and using the rolling mechanism. Our current default configuration (large cloud-based project) does not set the StorageFolder parameter for the ServerTelemetryChannel, so the channel does not enable its intermediate disk storage capabilities. Even if we set the StorageFolder it writes the compressed files that are not suitable for the support staff. Our goal is to make a solution that would allow them to investigate the connectivity problems after (for example) a week of AppInsights silence.
Most problem is we don't have an indicator of whether the AppInsights is assuming the connection loss, or assuming the connection is working.
So, investigating the AppInsights sources gives us the two classes that are monitoring the network status:
NetworkAvailabilityTransmissionPolicy, and
BackoffLogicManager
Both classes are instantiated quite deep in the internals of the ServerTelemetryChannel class, access to its properties is not possible from the calling code.
Please fix the implementation to allow access to the current endpoint availability state.
To Reproduce
On any working AppInsights project, at the runtime set the internet connection to the disabled state. While the endpoint is unavailable, there are no exposed properties/events/hooks to know that AppInsights is not sending the data.
The text was updated successfully, but these errors were encountered: