Update LAB_11-Implement_Monitoring.md

This commit is contained in:
staleycyn 2024-02-22 14:22:56 -08:00 committed by GitHub
parent a568b4e211
commit d14bc44534
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -229,8 +229,8 @@ In this task, you will use Azure Monitor to query the data captured from the vir
```bash ```bash
// Virtual Machine available memory // Virtual Machine available memory
// Chart the VM's available memory over the last hour. // Chart the VM's available memory over the last hour
InsightsMetrics \ InsightsMetrics
| where TimeGenerated > ago(1h) | where TimeGenerated > ago(1h)
| where Name == "AvailableMB" | where Name == "AvailableMB"
| project TimeGenerated, Name, Value | project TimeGenerated, Name, Value
@ -239,7 +239,7 @@ In this task, you will use Azure Monitor to query the data captured from the vir
1. As you have time, review and run other queries. 1. As you have time, review and run other queries.
>**Note**: Notice you can configure an alert rule based on a query. >**Did you know?**: Once you find a query you like, you can create an alert from it.
## Cleanup your resources ## Cleanup your resources