Monitoring and Troubleshooting in Azure CLI
π 8.1 Why Monitor Azure Resources?
Monitoring helps you:
Detect issues early
Spot problems before they cause downtime
Optimize performance
Track resource usage and adjust accordingly
Improve security
Detect suspicious activities
Audit changes
Track who made what changes and when
β Monitoring is proactive β itβs the key to maintaining a healthy Azure environment!
π 8.2 Viewing Activity Logs with Azure CLI
The Activity Log records operations on resources at the control plane (e.g., resource creation, deletion).
π οΈ View Recent Activity Logs
β Displays recent activities like create, delete, and update operations.
Filter by Resource Group
β Only shows activity in a specific Resource Group.
Filter by Time
Get logs from the past hour:
β Useful for investigating recent changes.
π 8.3 Viewing Metrics for Resources
Azure Metrics provide near real-time data on resource performance.
π οΈ List Available Metrics for a VM
β Shows all available metrics for the VM (CPU usage, Disk IO, etc.).
π οΈ Get CPU Usage Metrics
2025-04-05T14:00:00Z
12.5
2025-04-05T14:01:00Z
14.2
β See how busy your VM is!
π©Ί 8.4 Diagnosing Virtual Machine Issues
When VMs act weird (fail to boot, slow down, crash), diagnostics are your friend.
π οΈ Enable Boot Diagnostics
β Captures screenshots and logs during VM startup.
π οΈ View Boot Diagnostics Info
β See the boot log and screenshot to help diagnose issues.
βοΈ 8.5 Configuring Diagnostics Settings
Azure resources can send logs and metrics to:
Log Analytics Workspace
Storage Account
Event Hub
β You can set this up with Azure CLI too!
π οΈ Example: Send Diagnostics to a Log Analytics Workspace
β Centralized logging = easier troubleshooting!
π₯ 8.6 Real-World Troubleshooting Example
Problem: You can't connect to your new Linux VM.
β Hereβs a basic troubleshooting flow:
1
az vm show
Verify VM exists and is running
2
az network nic show
Check NIC (network interface) status
3
az network nsg rule list
Verify NSG allows SSH inbound (port 22)
4
az vm boot-diagnostics get-boot-log
Check if VM booted properly
If SSH port is blocked or the VM failed to boot β youβll know fast.
π‘οΈ 8.7 Best Practices for Monitoring and Troubleshooting
Enable diagnostics from the start
Avoid scrambling during incidents
Send logs to Log Analytics
Centralized monitoring and analysis
Regularly review Activity Logs
Detect unauthorized or suspicious changes
Monitor key metrics (CPU, Disk)
Avoid outages from resource exhaustion
Script common troubleshooting tasks
Save time during incidents
π Module 8 Summary
View Activity Logs
az monitor activity-log list
Monitor Metrics
az monitor metrics list
Diagnose VMs
Boot diagnostics help fix startup problems
Configure Diagnostics Settings
Send logs/metrics to centralized locations
Troubleshooting best practices
Proactive monitoring saves time and resources
Last updated