I have a straight-forward web app setup:
Frontend --> APIM --> Azure Function --> Cosmos DB
I wanted to monitor this setup with Applications Insights so I configured everything with out-of-the-box setups:
- Created a vanilla Application Insights instance
- In the Azure Function App, I selected this AI resource and did not add any additional code to the function for custom telemetry data
- In the APIM instance, I selected the AI resource and did not apply any additional configuration
- In my javascript-based frontend, I added an AI instrumentation library to send telemetry data
After looking at the telemetry data, all the critical pieces appear to be transmitting correctly. However, the Application Map view is not properly representing the topology (names changed to be more clear):
There is no connection between Frontend --> APIM and no connection between APIM --> Azure Function.
Is there more configuration that is needed to make the tie?

