Make Azure Monitor exporter conditional for local dev - #94
Open
Lily Ma (lilyjma) wants to merge 1 commit into
Open
Make Azure Monitor exporter conditional for local dev#94Lily Ma (lilyjma) wants to merge 1 commit into
Lily Ma (lilyjma) wants to merge 1 commit into
Conversation
Skip UseAzureMonitorExporter() when APPLICATIONINSIGHTS_CONNECTION_STRING is not set so func start works locally without extra configuration. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Rohit Ranjan (RohitRanjanMS)
suggested changes
May 11, 2026
| builder.Services.AddOpenTelemetry() | ||
| .UseFunctionsWorkerDefaults() | ||
| .UseAzureMonitorExporter(); | ||
| var otel = builder.Services.AddOpenTelemetry() |
There was a problem hiding this comment.
We should move .AddOpenTelemetry() call to inside if block as well.
if (!string.IsNullOrEmpty(Environment.GetEnvironmentVariable("APPLICATIONINSIGHTS_CONNECTION_STRING")))
{
builder.Services.AddOpenTelemetry()
.UseFunctionsWorkerDefaults()
.UseAzureMonitorExporter();
}
| @@ -11,9 +11,13 @@ | |||
|
|
|||
There was a problem hiding this comment.
I prefer the approach of using regions so that we do not have unexpected behaviour in prod e.g.
#if DEBUG
if (!string.IsNullOrEmpty(Environment.GetEnvironmentVariable("APPLICATIONINSIGHTS_CONNECTION_STRING")))
{
services.AddOpenTelemetry()
.UseFunctionsWorkerDefaults()
.UseAzureMonitorExporter();
}
#else
services.AddOpenTelemetry()
.UseFunctionsWorkerDefaults()
.UseAzureMonitorExporter();
#endif
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
All 5 projects crash on
func startlocally becauseUseAzureMonitorExporter()requiresAPPLICATIONINSIGHTS_CONNECTION_STRING, which is only set in Azure (provisioned by bicep).Fix
Made the exporter conditional — only wire it up when the connection string env var is present. OpenTelemetry +
UseFunctionsWorkerDefaults()still initializes; telemetry in Azure is unaffected.Files changed
src/FunctionsMcpApp/Program.cssrc/FunctionsMcpPrompts/Program.cssrc/FunctionsMcpResources/Program.cssrc/FunctionsMcpTool/Program.cssrc/McpWeatherApp/Program.cs