Choose the main reason monitoring is critical in Azure DevOps pipelines.
Think about how monitoring helps catch problems before they affect users.
Monitoring helps detect failures early, allowing quick fixes and smooth deployments.
What is the output of this Azure CLI command that lists active alerts?
az monitor alert list --query "[?status=='Activated'].{Name:name, Severity:severity}" --output json
The command filters alerts with status 'Activated' and shows name and severity.
The command outputs a JSON list of active alerts with their names and severity levels.
Put these steps in the correct order to set up Azure Monitor for an Azure Web App.
Think about creating resources first, then enabling logging, linking, and finally alerts.
You first create the workspace, then enable logging, link the app, and finally create alerts.
You set up alerts in Azure Monitor but they never trigger. What is the most likely cause?
Check if the alert rule is properly configured and returns data.
If the alert query is wrong or returns no data, alerts will not trigger even if the resource is active.
Which practice best helps control costs while maintaining effective monitoring in Azure?
Think about balancing data usefulness and storage costs.
Keeping retention minimal and filtering logs reduces storage costs while keeping important data for monitoring.