You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 5, 2020. It is now read-only.
DependencyCollector keeps pending telemetry list.
In BeginRequest event it adds telemetry to the concurrent dictionary
In EndRequest event it removes telemetry from the list.
However on netcoreapp1.1 and prior, EndRequest is not guaranteed. It's not fired for canceled and faulted (DNS, network issues, etc..) requests.
In every long running service this list will always grow. In case of massive network issues service may die because of OOM.
The text was updated successfully, but these errors were encountered:
DependencyCollector keeps pending telemetry list.
In BeginRequest event it adds telemetry to the concurrent dictionary
In EndRequest event it removes telemetry from the list.
However on netcoreapp1.1 and prior, EndRequest is not guaranteed. It's not fired for canceled and faulted (DNS, network issues, etc..) requests.
In every long running service this list will always grow. In case of massive network issues service may die because of OOM.
The text was updated successfully, but these errors were encountered: