Skip to content

Commit a3edf5f

Browse files
author
Jill Grant
authored
Merge pull request #256483 from davidsmatlak/ds-arg-samples-monitor-dcr
Adds ARG queries for Azure Monitor data collection rules
2 parents 0db697e + 6db5b2e commit a3edf5f

4 files changed

Lines changed: 207 additions & 4 deletions

File tree

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
ms.service: resource-graph
3+
ms.topic: include
4+
ms.date: 10/27/2023
5+
author: davidsmatlak
6+
ms.author: davidsmatlak
7+
---
8+
9+
### List VMs with data collection rule associations
10+
11+
This query lists virtual machines with data collection rule associations. For each virtual machine, lists data collection rules associated with it.
12+
13+
```kusto
14+
insightsresources
15+
| where type == 'microsoft.insights/datacollectionruleassociations'
16+
| where id contains 'microsoft.compute/virtualmachines/'
17+
| project id = trim_start('/', tolower(id)), properties
18+
| extend idComponents = split(id, '/')
19+
| extend subscription = tolower(tostring(idComponents[1])), resourceGroup = tolower(tostring(idComponents[3])), vmName = tolower(tostring(idComponents[7]))
20+
| extend dcrId = properties['dataCollectionRuleId']
21+
| where isnotnull(dcrId)
22+
| extend dcrId = tostring(dcrId)
23+
| summarize dcrList = make_list(dcrId), dcrCount = count() by subscription, resourceGroup, vmName
24+
| sort by dcrCount desc
25+
```
26+
27+
# [Azure CLI](#tab/azure-cli)
28+
29+
```azurecli-interactive
30+
az graph query -q "insightsresources | where type == 'microsoft.insights/datacollectionruleassociations' | where id contains 'microsoft.compute/virtualmachines/' | project id = trim_start('/', tolower(id)), properties | extend idComponents = split(id, '/') | extend subscription = tolower(tostring(idComponents[1])), resourceGroup = tolower(tostring(idComponents[3])), vmName = tolower(tostring(idComponents[7])) | extend dcrId = properties['dataCollectionRuleId'] | where isnotnull(dcrId) | extend dcrId = tostring(dcrId) | summarize dcrList = make_list(dcrId), dcrCount = count() by subscription, resourceGroup, vmName | sort by dcrCount desc"
31+
```
32+
33+
# [Azure PowerShell](#tab/azure-powershell)
34+
35+
```azurepowershell-interactive
36+
Search-AzGraph -Query "insightsresources | where type == 'microsoft.insights/datacollectionruleassociations' | where id contains 'microsoft.compute/virtualmachines/' | project id = trim_start('/', tolower(id)), properties | extend idComponents = split(id, '/') | extend subscription = tolower(tostring(idComponents[1])), resourceGroup = tolower(tostring(idComponents[3])), vmName = tolower(tostring(idComponents[7])) | extend dcrId = properties['dataCollectionRuleId'] | where isnotnull(dcrId) | extend dcrId = tostring(dcrId) | summarize dcrList = make_list(dcrId), dcrCount = count() by subscription, resourceGroup, vmName | sort by dcrCount desc"
37+
```
38+
39+
# [Portal](#tab/azure-portal)
40+
41+
:::image type="icon" source="../../../resource-graph/media/resource-graph-small.png"::: Try this query in Azure Resource Graph Explorer:
42+
43+
- Azure portal: <a href="https://portal.azure.com/?feature.customportal=false#blade/HubsExtension/ArgQueryBlade/query/insightsresources%0D%0A%7C%20where%20type%20%3D%3D%20%27microsoft.insights%2Fdatacollectionruleassociations%27%0D%0A%7C%20where%20id%20contains%20%27microsoft.compute%2Fvirtualmachines%2F%27%0D%0A%7C%20project%20id%20%3D%20trim_start%28%27%2F%27%2C%20tolower%28id%29%29%2C%20properties%0D%0A%7C%20extend%20idComponents%20%3D%20split%28id%2C%20%27%2F%27%29%0D%0A%7C%20extend%20subscription%20%3D%20tolower%28tostring%28idComponents%5B1%5D%29%29%2C%20resourceGroup%20%3D%20tolower%28tostring%28idComponents%5B3%5D%29%29%2C%20vmName%20%3D%20tolower%28tostring%28idComponents%5B7%5D%29%29%0D%0A%7C%20extend%20dcrId%20%3D%20properties%5B%27dataCollectionRuleId%27%5D%0D%0A%7C%20where%20isnotnull%28dcrId%29%0D%0A%7C%20extend%20dcrId%20%3D%20tostring%28dcrId%29%0D%0A%7C%20summarize%20dcrList%20%3D%20make_list%28dcrId%29%2C%20dcrCount%20%3D%20count%28%29%20by%20subscription%2C%20resourceGroup%2C%20vmName%0D%0A%7C%20sort%20by%20dcrCount%20desc" target="_blank">portal.azure.com</a>
44+
- Azure Government portal: <a href="https://portal.azure.us/?feature.customportal=false#blade/HubsExtension/ArgQueryBlade/query/insightsresources%0D%0A%7C%20where%20type%20%3D%3D%20%27microsoft.insights%2Fdatacollectionruleassociations%27%0D%0A%7C%20where%20id%20contains%20%27microsoft.compute%2Fvirtualmachines%2F%27%0D%0A%7C%20project%20id%20%3D%20trim_start%28%27%2F%27%2C%20tolower%28id%29%29%2C%20properties%0D%0A%7C%20extend%20idComponents%20%3D%20split%28id%2C%20%27%2F%27%29%0D%0A%7C%20extend%20subscription%20%3D%20tolower%28tostring%28idComponents%5B1%5D%29%29%2C%20resourceGroup%20%3D%20tolower%28tostring%28idComponents%5B3%5D%29%29%2C%20vmName%20%3D%20tolower%28tostring%28idComponents%5B7%5D%29%29%0D%0A%7C%20extend%20dcrId%20%3D%20properties%5B%27dataCollectionRuleId%27%5D%0D%0A%7C%20where%20isnotnull%28dcrId%29%0D%0A%7C%20extend%20dcrId%20%3D%20tostring%28dcrId%29%0D%0A%7C%20summarize%20dcrList%20%3D%20make_list%28dcrId%29%2C%20dcrCount%20%3D%20count%28%29%20by%20subscription%2C%20resourceGroup%2C%20vmName%0D%0A%7C%20sort%20by%20dcrCount%20desc" target="_blank">portal.azure.us</a>
45+
- Microsoft Azure operated by 21Vianet portal: <a href="https://portal.azure.cn/?feature.customportal=false#blade/HubsExtension/ArgQueryBlade/query/insightsresources%0D%0A%7C%20where%20type%20%3D%3D%20%27microsoft.insights%2Fdatacollectionruleassociations%27%0D%0A%7C%20where%20id%20contains%20%27microsoft.compute%2Fvirtualmachines%2F%27%0D%0A%7C%20project%20id%20%3D%20trim_start%28%27%2F%27%2C%20tolower%28id%29%29%2C%20properties%0D%0A%7C%20extend%20idComponents%20%3D%20split%28id%2C%20%27%2F%27%29%0D%0A%7C%20extend%20subscription%20%3D%20tolower%28tostring%28idComponents%5B1%5D%29%29%2C%20resourceGroup%20%3D%20tolower%28tostring%28idComponents%5B3%5D%29%29%2C%20vmName%20%3D%20tolower%28tostring%28idComponents%5B7%5D%29%29%0D%0A%7C%20extend%20dcrId%20%3D%20properties%5B%27dataCollectionRuleId%27%5D%0D%0A%7C%20where%20isnotnull%28dcrId%29%0D%0A%7C%20extend%20dcrId%20%3D%20tostring%28dcrId%29%0D%0A%7C%20summarize%20dcrList%20%3D%20make_list%28dcrId%29%2C%20dcrCount%20%3D%20count%28%29%20by%20subscription%2C%20resourceGroup%2C%20vmName%0D%0A%7C%20sort%20by%20dcrCount%20desc" target="_blank">portal.azure.cn</a>
46+
47+
---
Lines changed: 146 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
---
2+
ms.service: resource-graph
3+
ms.topic: include
4+
ms.date: 10/27/2023
5+
author: davidsmatlak
6+
ms.author: davidsmatlak
7+
---
8+
9+
### Count Azure Monitor data collection rules by subscription and resource group
10+
11+
This query groups Azure Monitor data collection rules by subscription and resource group.
12+
13+
```kusto
14+
resources
15+
| where type == 'microsoft.insights/datacollectionrules'
16+
| summarize dcrCount = count() by subscriptionId, resourceGroup, location
17+
| sort by dcrCount desc
18+
```
19+
20+
# [Azure CLI](#tab/azure-cli)
21+
22+
```azurecli-interactive
23+
az graph query -q "resources | where type == 'microsoft.insights/datacollectionrules' | summarize dcrCount = count() by subscriptionId, resourceGroup, location | sort by dcrCount desc"
24+
```
25+
26+
# [Azure PowerShell](#tab/azure-powershell)
27+
28+
```azurepowershell-interactive
29+
Search-AzGraph -Query "resources | where type == 'microsoft.insights/datacollectionrules' | summarize dcrCount = count() by subscriptionId, resourceGroup, location | sort by dcrCount desc"
30+
```
31+
32+
# [Portal](#tab/azure-portal)
33+
34+
:::image type="icon" source="../../../resource-graph/media/resource-graph-small.png"::: Try this query in Azure Resource Graph Explorer:
35+
36+
- Azure portal: <a href="https://portal.azure.com/?feature.customportal=false#blade/HubsExtension/ArgQueryBlade/query/resources%0D%0A%7C%20where%20type%20%3D%3D%20%27microsoft.insights%2Fdatacollectionrules%27%0D%0A%7C%20summarize%20dcrCount%20%3D%20count%28%29%20by%20subscriptionId%2C%20resourceGroup%2C%20location%0D%0A%7C%20sort%20by%20dcrCount%20desc" target="_blank">portal.azure.com</a>
37+
- Azure Government portal: <a href="https://portal.azure.us/?feature.customportal=false#blade/HubsExtension/ArgQueryBlade/query/resources%0D%0A%7C%20where%20type%20%3D%3D%20%27microsoft.insights%2Fdatacollectionrules%27%0D%0A%7C%20summarize%20dcrCount%20%3D%20count%28%29%20by%20subscriptionId%2C%20resourceGroup%2C%20location%0D%0A%7C%20sort%20by%20dcrCount%20desc" target="_blank">portal.azure.us</a>
38+
- Microsoft Azure operated by 21Vianet portal: <a href="https://portal.azure.cn/?feature.customportal=false#blade/HubsExtension/ArgQueryBlade/query/resources%0D%0A%7C%20where%20type%20%3D%3D%20%27microsoft.insights%2Fdatacollectionrules%27%0D%0A%7C%20summarize%20dcrCount%20%3D%20count%28%29%20by%20subscriptionId%2C%20resourceGroup%2C%20location%0D%0A%7C%20sort%20by%20dcrCount%20desc" target="_blank">portal.azure.cn</a>
39+
40+
---
41+
42+
### Count Azure Monitor data collection rules by location
43+
44+
This query groups Azure Monitor data collection rules by location.
45+
46+
```kusto
47+
resources
48+
| where type == 'microsoft.insights/datacollectionrules'
49+
| summarize dcrCount=count() by location
50+
| sort by dcrCount desc
51+
```
52+
53+
# [Azure CLI](#tab/azure-cli)
54+
55+
```azurecli-interactive
56+
az graph query -q "resources | where type == 'microsoft.insights/datacollectionrules' | summarize dcrCount=count() by location | sort by dcrCount desc"
57+
```
58+
59+
# [Azure PowerShell](#tab/azure-powershell)
60+
61+
```azurepowershell-interactive
62+
Search-AzGraph -Query "resources | where type == 'microsoft.insights/datacollectionrules' | summarize dcrCount=count() by location | sort by dcrCount desc"
63+
```
64+
65+
# [Portal](#tab/azure-portal)
66+
67+
:::image type="icon" source="../../../resource-graph/media/resource-graph-small.png"::: Try this query in Azure Resource Graph Explorer:
68+
69+
- Azure portal: <a href="https://portal.azure.com/?feature.customportal=false#blade/HubsExtension/ArgQueryBlade/query/resources%0D%0A%7C%20where%20type%20%3D%3D%20%27microsoft.insights%2Fdatacollectionrules%27%0D%0A%7C%20summarize%20dcrCount%3Dcount%28%29%20by%20location%0D%0A%7C%20sort%20by%20dcrCount%20desc" target="_blank">portal.azure.com</a>
70+
- Azure Government portal: <a href="https://portal.azure.us/?feature.customportal=false#blade/HubsExtension/ArgQueryBlade/query/resources%0D%0A%7C%20where%20type%20%3D%3D%20%27microsoft.insights%2Fdatacollectionrules%27%0D%0A%7C%20summarize%20dcrCount%3Dcount%28%29%20by%20location%0D%0A%7C%20sort%20by%20dcrCount%20desc" target="_blank">portal.azure.us</a>
71+
- Microsoft Azure operated by 21Vianet portal: <a href="https://portal.azure.cn/?feature.customportal=false#blade/HubsExtension/ArgQueryBlade/query/resources%0D%0A%7C%20where%20type%20%3D%3D%20%27microsoft.insights%2Fdatacollectionrules%27%0D%0A%7C%20summarize%20dcrCount%3Dcount%28%29%20by%20location%0D%0A%7C%20sort%20by%20dcrCount%20desc" target="_blank">portal.azure.cn</a>
72+
73+
---
74+
75+
### List Azure Monitor data collection rules with Log Analytics workspace as destination
76+
77+
Get the list of Log Analytics workspaces, and for each of the workspaces, list data collection rules that specify the workspace as one of the destinations.
78+
79+
```kusto
80+
resources
81+
| where type == 'microsoft.insights/datacollectionrules'
82+
| extend destinations = properties['destinations']
83+
| extend logAnalyticsWorkspaces = destinations['logAnalytics']
84+
| where isnotnull(logAnalyticsWorkspaces)
85+
| mv-expand logAnalyticsWorkspace = logAnalyticsWorkspaces
86+
| extend logAnalyticsWorkspaceResourceId = tolower(tostring(logAnalyticsWorkspace['workspaceResourceId']))
87+
| summarize dcrList = make_list(id), dcrCount = count() by logAnalyticsWorkspaceResourceId
88+
| sort by dcrCount desc
89+
```
90+
91+
# [Azure CLI](#tab/azure-cli)
92+
93+
```azurecli-interactive
94+
az graph query -q "resources | where type == 'microsoft.insights/datacollectionrules' | extend destinations = properties['destinations'] | extend logAnalyticsWorkspaces = destinations['logAnalytics'] | where isnotnull(logAnalyticsWorkspaces) | mv-expand logAnalyticsWorkspace = logAnalyticsWorkspaces | extend logAnalyticsWorkspaceResourceId = tolower(tostring(logAnalyticsWorkspace['workspaceResourceId'])) | summarize dcrList = make_list(id), dcrCount = count() by logAnalyticsWorkspaceResourceId | sort by dcrCount desc"
95+
```
96+
97+
# [Azure PowerShell](#tab/azure-powershell)
98+
99+
```azurepowershell-interactive
100+
Search-AzGraph -Query "resources | where type == 'microsoft.insights/datacollectionrules' | extend destinations = properties['destinations'] | extend logAnalyticsWorkspaces = destinations['logAnalytics'] | where isnotnull(logAnalyticsWorkspaces) | mv-expand logAnalyticsWorkspace = logAnalyticsWorkspaces | extend logAnalyticsWorkspaceResourceId = tolower(tostring(logAnalyticsWorkspace['workspaceResourceId'])) | summarize dcrList = make_list(id), dcrCount = count() by logAnalyticsWorkspaceResourceId | sort by dcrCount desc"
101+
```
102+
103+
# [Portal](#tab/azure-portal)
104+
105+
:::image type="icon" source="../../../resource-graph/media/resource-graph-small.png"::: Try this query in Azure Resource Graph Explorer:
106+
107+
- Azure portal: <a href="https://portal.azure.com/?feature.customportal=false#blade/HubsExtension/ArgQueryBlade/query/resources%0D%0A%7C%20where%20type%20%3D%3D%20%27microsoft.insights%2Fdatacollectionrules%27%0D%0A%7C%20extend%20destinations%20%3D%20properties%5B%27destinations%27%5D%0D%0A%7C%20extend%20logAnalyticsWorkspaces%20%3D%20destinations%5B%27logAnalytics%27%5D%0D%0A%7C%20where%20isnotnull%28logAnalyticsWorkspaces%29%0D%0A%7C%20mv-expand%20logAnalyticsWorkspace%20%3D%20logAnalyticsWorkspaces%0D%0A%7C%20extend%20logAnalyticsWorkspaceResourceId%20%3D%20tolower%28tostring%28logAnalyticsWorkspace%5B%27workspaceResourceId%27%5D%29%29%0D%0A%7C%20summarize%20dcrList%20%3D%20make_list%28id%29%2C%20dcrCount%20%3D%20count%28%29%20by%20logAnalyticsWorkspaceResourceId%0D%0A%7C%20sort%20by%20dcrCount%20desc" target="_blank">portal.azure.com</a>
108+
- Azure Government portal: <a href="https://portal.azure.us/?feature.customportal=false#blade/HubsExtension/ArgQueryBlade/query/resources%0D%0A%7C%20where%20type%20%3D%3D%20%27microsoft.insights%2Fdatacollectionrules%27%0D%0A%7C%20extend%20destinations%20%3D%20properties%5B%27destinations%27%5D%0D%0A%7C%20extend%20logAnalyticsWorkspaces%20%3D%20destinations%5B%27logAnalytics%27%5D%0D%0A%7C%20where%20isnotnull%28logAnalyticsWorkspaces%29%0D%0A%7C%20mv-expand%20logAnalyticsWorkspace%20%3D%20logAnalyticsWorkspaces%0D%0A%7C%20extend%20logAnalyticsWorkspaceResourceId%20%3D%20tolower%28tostring%28logAnalyticsWorkspace%5B%27workspaceResourceId%27%5D%29%29%0D%0A%7C%20summarize%20dcrList%20%3D%20make_list%28id%29%2C%20dcrCount%20%3D%20count%28%29%20by%20logAnalyticsWorkspaceResourceId%0D%0A%7C%20sort%20by%20dcrCount%20desc" target="_blank">portal.azure.us</a>
109+
- Microsoft Azure operated by 21Vianet portal: <a href="https://portal.azure.cn/?feature.customportal=false#blade/HubsExtension/ArgQueryBlade/query/resources%0D%0A%7C%20where%20type%20%3D%3D%20%27microsoft.insights%2Fdatacollectionrules%27%0D%0A%7C%20extend%20destinations%20%3D%20properties%5B%27destinations%27%5D%0D%0A%7C%20extend%20logAnalyticsWorkspaces%20%3D%20destinations%5B%27logAnalytics%27%5D%0D%0A%7C%20where%20isnotnull%28logAnalyticsWorkspaces%29%0D%0A%7C%20mv-expand%20logAnalyticsWorkspace%20%3D%20logAnalyticsWorkspaces%0D%0A%7C%20extend%20logAnalyticsWorkspaceResourceId%20%3D%20tolower%28tostring%28logAnalyticsWorkspace%5B%27workspaceResourceId%27%5D%29%29%0D%0A%7C%20summarize%20dcrList%20%3D%20make_list%28id%29%2C%20dcrCount%20%3D%20count%28%29%20by%20logAnalyticsWorkspaceResourceId%0D%0A%7C%20sort%20by%20dcrCount%20desc" target="_blank">portal.azure.cn</a>
110+
111+
---
112+
113+
### List data collection rules that use Azure Monitor Metrics as one of its destinations
114+
115+
This query lists data collection rules that use Azure Monitor Metrics as one of its destinations.
116+
117+
```kusto
118+
resources
119+
| where type == 'microsoft.insights/datacollectionrules'
120+
| extend destinations = properties['destinations']
121+
| extend azureMonitorMetrics = destinations['azureMonitorMetrics']
122+
| where isnotnull(azureMonitorMetrics)
123+
| project-away destinations, azureMonitorMetrics
124+
```
125+
126+
# [Azure CLI](#tab/azure-cli)
127+
128+
```azurecli-interactive
129+
az graph query -q "resources | where type == 'microsoft.insights/datacollectionrules' | extend destinations = properties['destinations'] | extend azureMonitorMetrics = destinations['azureMonitorMetrics'] | where isnotnull(azureMonitorMetrics) | project-away destinations, azureMonitorMetrics"
130+
```
131+
132+
# [Azure PowerShell](#tab/azure-powershell)
133+
134+
```azurepowershell-interactive
135+
Search-AzGraph -Query "resources | where type == 'microsoft.insights/datacollectionrules' | extend destinations = properties['destinations'] | extend azureMonitorMetrics = destinations['azureMonitorMetrics'] | where isnotnull(azureMonitorMetrics) | project-away destinations, azureMonitorMetrics"
136+
```
137+
138+
# [Portal](#tab/azure-portal)
139+
140+
:::image type="icon" source="../../../resource-graph/media/resource-graph-small.png"::: Try this query in Azure Resource Graph Explorer:
141+
142+
- Azure portal: <a href="https://portal.azure.com/?feature.customportal=false#blade/HubsExtension/ArgQueryBlade/query/resources%0D%0A%7C%20where%20type%20%3D%3D%20%27microsoft.insights%2Fdatacollectionrules%27%0D%0A%7C%20extend%20destinations%20%3D%20properties%5B%27destinations%27%5D%0D%0A%7C%20extend%20azureMonitorMetrics%20%3D%20destinations%5B%27azureMonitorMetrics%27%5D%0D%0A%7C%20where%20isnotnull%28azureMonitorMetrics%29%0D%0A%7C%20project-away%20destinations%2C%20azureMonitorMetrics" target="_blank">portal.azure.com</a>
143+
- Azure Government portal: <a href="https://portal.azure.us/?feature.customportal=false#blade/HubsExtension/ArgQueryBlade/query/resources%0D%0A%7C%20where%20type%20%3D%3D%20%27microsoft.insights%2Fdatacollectionrules%27%0D%0A%7C%20extend%20destinations%20%3D%20properties%5B%27destinations%27%5D%0D%0A%7C%20extend%20azureMonitorMetrics%20%3D%20destinations%5B%27azureMonitorMetrics%27%5D%0D%0A%7C%20where%20isnotnull%28azureMonitorMetrics%29%0D%0A%7C%20project-away%20destinations%2C%20azureMonitorMetrics" target="_blank">portal.azure.us</a>
144+
- Microsoft Azure operated by 21Vianet portal: <a href="https://portal.azure.cn/?feature.customportal=false#blade/HubsExtension/ArgQueryBlade/query/resources%0D%0A%7C%20where%20type%20%3D%3D%20%27microsoft.insights%2Fdatacollectionrules%27%0D%0A%7C%20extend%20destinations%20%3D%20properties%5B%27destinations%27%5D%0D%0A%7C%20extend%20azureMonitorMetrics%20%3D%20destinations%5B%27azureMonitorMetrics%27%5D%0D%0A%7C%20where%20isnotnull%28azureMonitorMetrics%29%0D%0A%7C%20project-away%20destinations%2C%20azureMonitorMetrics" target="_blank">portal.azure.cn</a>
145+
146+
---

articles/governance/resource-graph/samples/samples-by-category.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
22
title: List of sample Azure Resource Graph queries by category
33
description: List sample queries for Azure Resource-Graph. Categories include Tags, Azure Advisor, Key Vault, Kubernetes, Guest Configuration, and more.
4-
ms.date: 09/01/2023
4+
ms.date: 10/27/2023
55
ms.topic: sample
66
ms.custom: generated
77
---
88

99
# Azure Resource Graph sample queries by category
1010

1111
This page is a collection of Azure Resource Graph sample queries grouped by general and service
12-
categories. To jump to a specific **category**, use the menu on the right side of the page.
12+
categories. To jump to a specific **category**, use the links on the top of the page.
1313
Otherwise, use <kbd>Ctrl</kbd>-<kbd>F</kbd> to use your browser's search feature.
1414

1515
## Azure Advisor
@@ -44,6 +44,10 @@ Otherwise, use <kbd>Ctrl</kbd>-<kbd>F</kbd> to use your browser's search feature
4444

4545
[!INCLUDE [azure-resource-graph-samples-cat-azure-monitor](../../../../includes/resource-graph/samples/bycat/azure-monitor.md)]
4646

47+
[!INCLUDE [azure-monitor-data-collection-rules-resources-table](../../includes/resource-graph/query/resources-monitor-data-collection-rules.md)]
48+
49+
[!INCLUDE [azure-monitor-data-collection-rules-insight-resources-table](../../includes/resource-graph/query/insight-resources-monitor-data-collection-rules.md)]
50+
4751
## Azure Policy
4852

4953
[!INCLUDE [azure-resource-graph-samples-cat-azure-policy](../../../../includes/resource-graph/samples/bycat/azure-policy.md)]

0 commit comments

Comments
 (0)