You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-monitor/platform/computer-groups.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,13 +93,13 @@ Click the **x** in the **Remove** column to delete the computer group. Click th
93
93
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:
94
94
95
95
```kusto
96
-
Table | where Computer in (ComputerGroup)`
96
+
Table | where Computer in (ComputerGroup)
97
97
```
98
98
99
99
For example, you could use the following to return UpdateSummary records for only computers in a computer group called mycomputergroup.
100
100
101
101
```kusto
102
-
UpdateSummary | where Computer in (mycomputergroup)`
102
+
UpdateSummary | where Computer in (mycomputergroup)
103
103
```
104
104
105
105
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.
0 commit comments