Skip to content

Commit db53c9c

Browse files
authored
Merge pull request #77917 from georgewallace/gw_umnotshowing
adding troubleshooting step
2 parents 238df45 + ce34987 commit db53c9c

File tree

1 file changed

+33
-4
lines changed

1 file changed

+33
-4
lines changed

articles/automation/troubleshoot/update-management.md

Lines changed: 33 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to troubleshoot issues with Update Management
44
services: automation
55
author: georgewallace
66
ms.author: gwallace
7-
ms.date: 05/07/2019
7+
ms.date: 05/31/2019
88
ms.topic: conceptual
99
ms.service: automation
1010
manager: carmonm
@@ -72,19 +72,48 @@ $s = New-AzureRmAutomationSchedule -ResourceGroupName mygroup -AutomationAccount
7272
New-AzureRmAutomationSoftwareUpdateConfiguration -ResourceGroupName $rg -AutomationAccountName $aa -Schedule $s -Windows -AzureVMResourceId $azureVMIdsW -NonAzureComputer $nonAzurecomputers -Duration (New-TimeSpan -Hours 2) -IncludedUpdateClassification Security,UpdateRollup -ExcludedKbNumber KB01,KB02 -IncludedKbNumber KB100
7373
```
7474

75-
### <a name="nologs"></a>Scenario: Update Management data not showing in Azure Monitor logs for a machine
75+
### <a name="nologs"></a>Scenario: Machines don't show up in the portal under Update Management
7676

7777
#### Issue
7878

79-
You have machines that show as **Not Assessed** under **Compliance**, but you see heartbeat data in Azure Monitor logs for the Hybrid Runbook Worker but not Update Management.
79+
You may run across the following scenarios:
80+
81+
* Your machine shows **Not configured** from the Update Management view of a VM
82+
83+
* Your machines are missing from the Update Management view of your Automation Account
84+
85+
* You have machines that show as **Not Assessed** under **Compliance**, but you see heartbeat data in Azure Monitor logs for the Hybrid Runbook Worker but not Update Management.
8086

8187
#### Cause
8288

89+
This can be caused by potential local configuration issues or by improperly configured Scope Configuration.
90+
8391
The Hybrid Runbook Worker may need to be re-registered and reinstalled.
8492

93+
You may have defined a quota in your workspace that has been reached and stopping data from being stored.
94+
8595
#### Resolution
8696

87-
Follow the steps at [Deploy a Windows Hybrid Runbook Worker](../automation-windows-hrw-install.md) to reinstall the Hybrid Worker for Windows or [Deploy a Linux Hybrid Runbook Worker](../automation-linux-hrw-install.md) for Linux.
97+
* Ensure your machine is reporting to the correct workspace. Verify what workspace your machine is reporting to. For instructions on how to verify this, see [Verify agent connectivity to Log Analytics](../../azure-monitor/platform/agent-windows.md#verify-agent-connectivity-to-log-analytics). Then, ensure this is the workspace that is linked to your Azure Automation account. To confirm this, navigate to your Automation Account and click **Linked workspace** under **Related Resources**.
98+
99+
* Check to ensure the machines show up in your Log Analytics workspace. Run the following query in your Log Analytics workspace that is linked to your Automation Account. If you do not see your machine in the query results, your machine is not heartbeating, which means there is most likely a local configuration issue. You can run the troubleshooter for [Windows](update-agent-issues.md#troubleshoot-offline) or [Linux](update-agent-issues-linux.md#troubleshoot-offline) depending on the OS, or you can [re-install the agent](../../azure-monitor/learn/quick-collect-windows-computer.md#install-the-agent-for-windows). If your machine shows up in the query results, then you need to very the scope configuration specified in the following bullet.
100+
101+
```loganalytics
102+
Heartbeat
103+
| summarize by Computer, Solutions
104+
```
105+
106+
* Check for scope configuration problems. [Scope Configuration](../automation-onboard-solutions-from-automation-account.md#scope-configuration) determines which machines get configured for the solution. If your machine is showing up in your workspace but is not showing up you will need to configure the scope config to target the machines. To learn how to do this, see [Onboard machines in the workspace](../automation-onboard-solutions-from-automation-account.md#onboard-machines-in-the-workspace).
107+
108+
* If the above steps do not solve your problem, Follow the steps at [Deploy a Windows Hybrid Runbook Worker](../automation-windows-hrw-install.md) to reinstall the Hybrid Worker for Windows or [Deploy a Linux Hybrid Runbook Worker](../automation-linux-hrw-install.md) for Linux.
109+
110+
* In your workspace, run the following query. If you see the result `Data collection stopped due to daily limit of free data reached. Ingestion status = OverQuota` you have a quota defined on your workspace that has been reached and has stopped data from being saved. In your workspace, navigate to **Usage and estimated costs** > **data volume management** and check your quota or remove the quota you have.
111+
112+
```loganalytics
113+
Operation
114+
| where OperationCategory == 'Data Collection Status'
115+
| sort by TimeGenerated desc
116+
```
88117

89118
## Windows
90119

0 commit comments

Comments
 (0)