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 was archived by the owner on Oct 12, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
### Version 2.7.1
4
4
-[NLog can perform Layout of InstrumentationKey](https://github.com/Microsoft/ApplicationInsights-dotnet-logging/pull/203)
5
5
- Upgrade `System.Diagnostics.DiagnosticSource` to version 4.5.0
6
+
-[Event Source telemetry module: Microsoft-ApplicationInsights-Data id disabled by default to work around CLR bug](https://github.com/Microsoft/ApplicationInsights-dotnet-logging/pull/206)
6
7
7
8
### Version 2.6.4
8
9
-[Log4Net new supports NetStandard 1.3!](https://github.com/Microsoft/ApplicationInsights-dotnet-logging/pull/167)
Copy file name to clipboardExpand all lines: src/EventSourceListener/EventSourceListeningRequestBase.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ public abstract class EventSourceListeningRequestBase
17
17
publicstringName{get;set;}
18
18
19
19
/// <summary>
20
-
/// Gets or sets a value indicating whether allows wildcards in <see cref="Name" />.
20
+
/// Gets or sets a value indicating whether the value of the <see cref="Name"/> property should match the name of an EventSource exactly, or should the value be treated as EventSource name prefix.
// Continue--we need to be prepared for handling disabled sources.
94
96
}
95
97
96
98
try
@@ -105,6 +107,16 @@ public void Initialize(TelemetryConfiguration configuration)
105
107
}
106
108
}
107
109
110
+
// Special case: because of .NET bug https://github.com/dotnet/coreclr/issues/14434, using Microsoft-ApplicationInsights-Data will result in infinite loop.
111
+
// So we will disable it by default, unless there is explicit configuration for this EventSource.
0 commit comments