Hello Todor,
- Verify Data Collection Rules (DCRs)
Go to Azure Monitor > Data Collection Rules.
Check:
Are all target machines associated with the correct DCR?
Is the DCR scoped to all expected machines?
Are the performance counters for disk space correctly defined?
You can use Azure CLI or PowerShell to list DCR associations:
az monitor data-collection rule association list --resource <Arc-enabled server resource ID>
- Check AMA Extension Status
Even if Heartbeat is visible, AMA might not be fully functional.
Run this on the Arc-enabled server:
azcmagent show
Look for:
Connected: true
Extensions: AzureMonitorWindowsAgent (or Linux equivalent)
Status: Ready
- Validate Log Analytics Workspace Connections
Ensure all machines are connected to the same workspace.
Check if workspace ingestion is working:
Go to Log Analytics > Tables > Perf.
Run a query like:
Perf
| where ObjectName == "LogicalDisk"
| summarize count() by Computer
Perf
| where ObjectName == "Logical Disk"
| summarize count() by Computer
- Unexpected Performance Counters
This can happen if:
A default DCR is applied.
Counters are inherited from another rule.
You used a template that includes extra counters.
az monitor data-collection rule show --name <DCR name> --resource-group <RG>
Please let me know if you face any challenge here, I can help you to resolve this issue further
If the comment was helpful, please click "Upvote"