Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions servers/Azure.Mcp.Server/src/appsettings.Development.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
// Generally, AZURE_MCP_COLLECT_TELEMETRY will be set as an environment variable.
// For Development purposes, we never want to publish telemetry so it is explicitly
// set here.
"AZURE_MCP_COLLECT_TELEMETRY": "false",
// Diabled AZURE_MCP_COLLECT_TELEMETRY_MICROSOFT to prevent development telemetry from being collected by Microsoft
// instrumentation. This is to avoid polluting production telemetry with development data.
"AZURE_MCP_COLLECT_TELEMETRY_MICROSOFT": "false",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[HIGH] Inconsistency: Fabric and Template dev configs not updated

Both servers/Fabric.Mcp.Server/src/appsettings.Development.json and servers/Template.Mcp.Server/src/appsettings.Development.json still have the old AZURE_MCP_COLLECT_TELEMETRY: false and lack the new AZURE_MCP_COLLECT_TELEMETRY_MICROSOFT and AZURE_MCP_ENABLE_OTLP_EXPORTER keys. Their Program.cs files were updated to call the renamed method, but their dev configs are stale. Devs running Fabric or Template servers in Development will get different telemetry behavior than Azure.Mcp.Server.

"AZURE_MCP_ENABLE_OTLP_EXPORTER": "true",
"Logging": {
"LogLevel": {
"Default": "Debug",
Expand Down
Loading