Skip to content

Commit c7540e7

Browse files
committed
Updating for freshness
1 parent 0795c29 commit c7540e7

File tree

1 file changed

+2
-15
lines changed

1 file changed

+2
-15
lines changed

articles/azure-monitor/logs/computer-groups.md

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ No longer supported
6161
## Managing computer groups
6262
You can view computer groups that were created from a log query from the **Legacy computer groups** menu item in your Log Analytics workspace in the Azure portal. Select the **Saved Groups** tab to view the list of groups.
6363

64-
Click the **Delete** icon to delete the computer group. Click the **Run query** icon for a group to run the group's log search that returns its members. You can't modify a computer group but instead must delete and then recreate it with the modified settings.
64+
Click the **Run query** icon for a group to run the group's log search that returns its members. Click the **Delete** icon to delete the computer group. You can't modify a computer group but instead must delete and then recreate it with the modified settings.
6565

66-
:::image type="content" source="media/computer-groups/configure-saved.png" alt-text="Screenshot of a Log Analytics resource in Azure with Legacy computer groups pane, Saved Groups tab, Run query icon, and Delete icon highlighted." border="false" lightbox="media/computer-groups/configure-saved.png":::
66+
:::image type="content" source="media/computer-groups/configure-saved.png" alt-text="Screenshot of a Log Analytics resource in Azure with Legacy computer groups pane, Saved Groups tab, Run query icon, and Delete icon highlighted." lightbox="media/computer-groups/configure-saved.png":::
6767

6868
## Using a computer group in a log query
6969
You use a Computer group created from a log query in a query by treating its alias as a function, typically with the following syntax:
@@ -78,18 +78,5 @@ For example, you could use the following to return UpdateSummary records for onl
7878
UpdateSummary | where Computer in (mycomputergroup)
7979
```
8080

81-
Imported computer groups and their included computers are stored in the **ComputerGroup** table. For example, the following query would return a list of computers in the Domain Computers group from Active Directory.
82-
83-
```kusto
84-
ComputerGroup | where GroupSource == "ActiveDirectory" and Group == "Domain Computers" | distinct Computer
85-
```
86-
87-
The following query would return UpdateSummary records for only computers in Domain Computers.
88-
89-
```kusto
90-
let ADComputers = ComputerGroup | where GroupSource == "ActiveDirectory" and Group == "Domain Computers" | distinct Computer;
91-
UpdateSummary | where Computer in (ADComputers)
92-
```
93-
9481
## Next steps
9582
* Learn about [log queries](./log-query-overview.md) to analyze the data collected from data sources and solutions.

0 commit comments

Comments
 (0)