1.3 KiB
1.3 KiB
description
| description |
|---|
| Deploy and test with Azure resources |
Deploy and test the .NET tracer with Azure resources.
Available Azure resources (resource group: lucas.pimentel):
- Function apps starting with prefix:
lucasp-*
Common tasks:
-
List Function Apps:
az functionapp list --resource-group lucas.pimentel --output table -
Get Function App Details:
az functionapp show --name <app-name> --resource-group lucas.pimentel -
List Functions in App:
az functionapp function list --name <app-name> --resource-group lucas.pimentel -
Check App Settings:
az functionapp config appsettings list --name <app-name> --resource-group lucas.pimentel -
Download Logs:
az webapp log download --name <app-name> --resource-group lucas.pimentel --log-file logs.zip
Deployment scenarios:
- Site Extension (Windows): Deploy via Azure portal or ARM template
- NuGet Package (Linux/Container): Build with
/azure-functions-nugetand deploy with package reference
Before deploying:
- Build the tracer or NuGet package
- Verify Azure CLI is authenticated:
az account show - Confirm target function app exists
After deploying:
- Check application logs for tracer initialization
- Verify traces are being sent to Datadog
- Test instrumented functionality