We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ApplicationInsights-dotnet/BASE/src/ServerTelemetryChannel/ServerTelemetryChannel.cs
Lines 317 to 333 in b7cc9ff
ServerTelemetryChannel is erroneously overwriting the Endpoint address on Initialization.
This example from the apmtips blog does not work for connection strings.
TelemetryConfiguration configuration = new TelemetryConfiguration(); configuration.InstrumentationKey = "9d3ebb4f-7a11-4fb1-91ac-7ca8a17a27eb"; QuickPulseTelemetryProcessor processor = null; configuration.TelemetryProcessorChainBuilder .Use((next) => { processor = new QuickPulseTelemetryProcessor(next); return processor; }) .Build(); var QuickPulse = new QuickPulseTelemetryModule(); QuickPulse.Initialize(configuration); QuickPulse.RegisterTelemetryProcessor(processor);
The text was updated successfully, but these errors were encountered:
This needs to be released as a hotfix for 2.12 (2.12.1) and will be included in 2.13-beta2
Sorry, something went wrong.
TimothyMothra
No branches or pull requests
When I added support for connection strings, I introduced a bug in ServerTelemetryChannel as reported here ServerTelemetryChannel does not respect what is passed via ApplicationInsights.config #1637
ApplicationInsights-dotnet/BASE/src/ServerTelemetryChannel/ServerTelemetryChannel.cs
Lines 317 to 333 in b7cc9ff
ServerTelemetryChannel is erroneously overwriting the Endpoint address on Initialization.
QuickPulseTelemetryModule needs additional work to support manual configuration.
This example from the apmtips blog does not work for connection strings.
The text was updated successfully, but these errors were encountered: