-
Notifications
You must be signed in to change notification settings - Fork 291
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f20c9a4
commit 8625a73
Showing
4 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -158,7 +158,7 @@ public static IServiceCollection ConfigureTelemetryModule<T>( | |||||||||||||
/// <param name="endpointAddress">Sets telemetry endpoint address.</param> | ||||||||||||||
/// <param name="instrumentationKey">Sets instrumentation key.</param> | ||||||||||||||
/// <returns>The <see cref="IConfigurationBuilder"/>.</returns> | ||||||||||||||
[Obsolete("InstrumentationKey based global ingestion is being deprecated. Use an AddApplicationInsightsSettings() overload to set ConnectionString. See https://github.com/microsoft/ApplicationInsights-dotnet/issues/2560 for more details.")] | ||||||||||||||
[Obsolete("InstrumentationKey based global ingestion is being deprecated. Use the AddApplicationInsightsSettings() overload which accepts string ConnectionString. See https://github.com/microsoft/ApplicationInsights-dotnet/issues/2560 for more details.")] | ||||||||||||||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
TimothyMothra
Author
Member
|
public static IConfigurationBuilder AddApplicationInsightsSettings( | |
this IConfigurationBuilder configurationSourceRoot, | |
string connectionString, | |
bool? developerMode = null, | |
string endpointAddress = null, | |
string instrumentationKey = null) |
I am not so sure if this is correct.