Monitoring a Go application deployed in Azure Container Apps is straightforward and similar to monitoring any other application. Simply instrument your application with Instana Go Tracer SDK, deploy it to the container apps, and ensure that the necessary environment variables for infrastructure correlation are set.
AZURE_SUBSCRIPTION_ID = <azure_subscription_id> AZURE_RESOURCE_GROUP = <azure_resource_group_name>
These environment variables are essential for constructing your container apps' resource ID. The Azure Container Apps resource ID follows this format:
/subscriptions/{AZURE_SUBSCRIPTION_ID}/resourceGroups/{AZURE_RESOURCE_GROUP}/providers/Microsoft.App/containerapps/<container_app_name>
.