An Azure service that is used to collect, analyze, and act on telemetry data from Azure and on-premises environments.
Hello**Arundhati Kumbhar** it sounds like your app in Central US is sending HTTP dependency calls but they never show up in your Central US Application Insights resource, while the same code in East US works fine. Here are some things to check:
- Run the built-in diagnostics: • In the Azure portal, open your Central US AI resource, go to “Diagnose and solve problems” → “Issue tracking additional telemetry” and make sure neither the ApplicationInsightsUnsupportedSDKDiagnostic nor the ApplicationInsightsMissingDataDiagnostic flags any errors.
- Verify your instrumentation key or connection string : • Make sure your app is actually pointing at the Central US AI key/connection string and not still reporting to the old East US resource. • If you’ve migrated to connection strings, confirm you’re not mixing IKs and CSs in your config.
- Check your SDK version and dependency-tracking support : • Ensure you’re on a supported AI SDK version for your platform. Older versions sometimes drop HTTP calls. • If you’re on Node.js, verify your HTTP client library is one of the “automatically tracked modules” (see docs). If not, you may need to call
client.trackDependency()manually. • On .NET/.NET Core, confirm auto-instrumentation hasn’t been disabled by an XDT setting or by interop. - Look at sampling and filtering: • If you’ve added any custom TelemetryProcessor/TelemetryInitializer, or you have sampling overrides, make sure you’re not inadvertently dropping dependency telemetry.
- Network and private-link considerations : • If your Central US AI uses a private endpoint (Azure Monitor Private Link), check that your app can actually reach that endpoint (or that public ingestion is still enabled).
- Auto-instrumentation in App Service (if applicable) : • Go to https://.scm.azurewebsites.net/ApplicationInsights and confirm the extension status (Windows: agent version ~2; Linux: ~3) and that
SDKPresent=falseandAgentInitializedSuccessfully=true.
If none of those steps surface the issue, we’ll need a bit more info to dig deeper:
• What language/SDK and version are you using?
• Are you using manual code instrumentation, the Azure App Service site extension, or the AI Agent/auto-instrumentation?
• Do you see any error logs or dropped-item counters in your app’s console or log files?
• Are you using sampling or any custom telemetry processors?
References :
Issue tracking additional telemetry (dependencies, exceptions, etc.) https://docs.microsoft.com/azure/azure-monitor/app/missing-telemetry
• Dependency tracking in Application Insights https://docs.microsoft.com/azure/azure-monitor/app/dependencies
• Troubleshoot missing specific telemetry types https://docs.microsoft.com/azure/azure-monitor/app/troubleshoot-missing-telemetry
• Troubleshoot Application Insights integration with Azure App Service https://docs.microsoft.com/troubleshoot/azure/azure-monitor/app-insights/telemetry/troubleshoot-app-service-issues
Hope this helps—let me know the answers to the questions above if you’re still stuck!
Thanks,
Suchitra.