Skip to content

Commit a4bfbd9

Browse files
authored
Merge pull request #139239 from SwathiDhanwada-MSFT/patch-30
(AzureCXP) fixes MicrosoftDocs/azure-docs#66796
2 parents 7fa5114 + b09aeb6 commit a4bfbd9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,13 @@ Click the **x** in the **Remove** column to delete the computer group. Click th
9393
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:
9494

9595
```kusto
96-
Table | where Computer in (ComputerGroup)`
96+
Table | where Computer in (ComputerGroup)
9797
```
9898

9999
For example, you could use the following to return UpdateSummary records for only computers in a computer group called mycomputergroup.
100100

101101
```kusto
102-
UpdateSummary | where Computer in (mycomputergroup)`
102+
UpdateSummary | where Computer in (mycomputergroup)
103103
```
104104

105105
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

Comments
 (0)