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/governance/resource-graph/reference/keyboard-shortcuts.md
+4-6Lines changed: 4 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,14 @@
1
1
---
2
2
title: Keyboard shortcuts in the Azure portal for Azure Resource Graph Explorer
3
3
description: Azure Resource Graph Explorer in the Azure portal supports keyboard shortcuts to help you perform actions and navigate.
4
-
ms.date: 08/17/2021
4
+
ms.date: 07/11/2024
5
5
ms.topic: reference
6
6
ms.custom: accessibility
7
7
---
8
+
8
9
# Keyboard shortcuts for Azure Resource Graph Explorer
9
10
10
-
This article lists the keyboard shortcuts that work in the Azure Resource Graph Explorer page of the
11
-
Azure portal. For a list of global keyboard shortcuts or a list of keyboard shortcuts available for
12
-
other pages, visit
13
-
[Keyboard shortcuts in the Azure portal](../../../azure-portal/azure-portal-keyboard-shortcuts.md).
11
+
This article lists the keyboard shortcuts that work in the Azure Resource Graph Explorer page of the Azure portal. For a list of global keyboard shortcuts or a list of keyboard shortcuts available for other pages, visit [Keyboard shortcuts in the Azure portal](../../../azure-portal/azure-portal-keyboard-shortcuts.md).
14
12
15
13
## Keyboard shortcuts for editing queries
16
14
@@ -62,4 +60,4 @@ other pages, visit
62
60
## Next steps
63
61
64
62
-[Keyboard shortcuts in the Azure portal](../../../azure-portal/azure-portal-keyboard-shortcuts.md)
65
-
-[Query language for Resource Graph](../concepts/query-language.md)
63
+
-[Understanding the Azure Resource Graph query language](../concepts/query-language.md)
title: Troubleshoot common errors for Azure Resource Graph
3
3
description: Learn how to troubleshoot issues with the various SDKs while querying Azure resources with Azure Resource Graph.
4
-
ms.date: 08/17/2021
4
+
ms.date: 07/11/2024
5
5
ms.topic: troubleshooting
6
6
---
7
7
8
8
# Troubleshoot errors using Azure Resource Graph
9
9
10
-
You may run into errors when querying Azure resources with Azure Resource Graph. This article
11
-
describes various errors that may occur and how to resolve them.
10
+
You might run into errors when querying Azure resources with Azure Resource Graph. This article describes various errors that might occur and how to resolve them.
12
11
13
12
## Finding error details
14
13
15
-
Most errors are the result of an issue while running a query with Azure Resource Graph. When a query
16
-
fails, the SDK provides details about the failed query. This information indicates the issue so that
17
-
it can be fixed and a later query succeeds.
14
+
Most errors are the result of an issue while running a query with Azure Resource Graph. When a query fails, the SDK provides details about the failed query. This information indicates the issue so that it can be fixed and a later query succeeds.
18
15
19
16
## General errors
20
17
@@ -26,10 +23,7 @@ Customers making large or frequent resource queries have requests throttled.
26
23
27
24
#### Cause
28
25
29
-
Azure Resource Graph allocates a quota number for each user based on a time window. For example, a
30
-
user can send at most 15 queries within every 5-second window without being throttled. The quota
31
-
value is determined by many factors and is subject to change. For more information, see
32
-
[Throttling in Azure Resource Graph](../overview.md#throttling).
26
+
Azure Resource Graph allocates a quota number for each user based on a time window. For example, a user can send at most 15 queries within every 5-second window without being throttled. The quota value is determined by many factors and is subject to change. For more information, see [Throttling in Azure Resource Graph](../overview.md#throttling).
33
27
34
28
#### Resolution
35
29
@@ -44,19 +38,15 @@ There are several methods of dealing with throttled requests:
44
38
45
39
#### Issue
46
40
47
-
Customers with access to more than 1,000 subscriptions, including cross-tenant subscriptions with
48
-
[Azure Lighthouse](../../../lighthouse/overview.md), can't fetch data across all subscriptions in a
49
-
single call to Azure Resource Graph.
41
+
Customers with access to more than 1,000 subscriptions, including cross-tenant subscriptions with [Azure Lighthouse](../../../lighthouse/overview.md), can't fetch data across all subscriptions in a single call to Azure Resource Graph.
50
42
51
43
#### Cause
52
44
53
-
Azure CLI and PowerShell forward only the first 1,000 subscriptions to Azure Resource Graph. The
54
-
REST API for Azure Resource Graph accepts a maximum number of subscriptions to perform the query on.
45
+
Azure CLI and PowerShell forward only the first 1,000 subscriptions to Azure Resource Graph. The REST API for Azure Resource Graph accepts a maximum number of subscriptions to perform the query on.
55
46
56
47
#### Resolution
57
48
58
-
Batch requests for the query with a subset of subscriptions to stay under the 1,000 subscription
59
-
limit. The solution is using the **Subscription** parameter in PowerShell.
49
+
Batch requests for the query with a subset of subscriptions to stay under the 1,000 subscription limit. The solution is using the **Subscription** parameter in PowerShell.
60
50
61
51
```azurepowershell-interactive
62
52
# Replace this query with your own
@@ -85,46 +75,34 @@ $response
85
75
86
76
#### Issue
87
77
88
-
Customers querying the Azure Resource Graph REST API get a _500_ (Internal Server Error) response
89
-
returned.
78
+
Customers querying the Azure Resource Graph REST API get a _500_ (Internal Server Error) response returned.
90
79
91
80
#### Cause
92
81
93
-
The Azure Resource Graph REST API only supports a `Content-Type` of **application/json**. Some REST
94
-
tools or agents default to **text/plain**, which is unsupported by the REST API.
82
+
The Azure Resource Graph REST API only supports a `Content-Type` of `application/json`. Some REST tools or agents default to `text/plain`, which is unsupported by the REST API.
95
83
96
84
#### Resolution
97
85
98
-
Validate that the tool or agent you're using to query Azure Resource Graph has the REST API header
99
-
`Content-Type` configured for **application/json**.
86
+
Validate that the tool or agent you're using to query Azure Resource Graph has the REST API header `Content-Type` configured for `application/json`.
100
87
101
88
### Scenario: No read permission to all subscriptions in list
102
89
103
90
#### Issue
104
91
105
-
Customers that explicitly pass a list of subscriptions with an Azure Resource Graph query get a
106
-
_403_ (Forbidden) response.
92
+
Customers that explicitly pass a list of subscriptions with an Azure Resource Graph query get a _403_ (Forbidden) response.
107
93
108
94
#### Cause
109
95
110
-
If the customer doesn't have read permission to all the provided subscriptions, the request is
111
-
denied because of lack of appropriate security rights.
96
+
If the customer doesn't have read permission to all the provided subscriptions, the request is denied because of lack of appropriate security rights.
112
97
113
98
#### Resolution
114
99
115
-
Include at least one subscription in the subscription list that the customer running the query has
116
-
at least read access to. For more information, see
117
-
[Permissions in Azure Resource Graph](../overview.md#permissions-in-azure-resource-graph).
100
+
Include at least one subscription in the subscription list that the customer running the query has at least read access to. For more information, see [Permissions in Azure Resource Graph](../overview.md#permissions-in-azure-resource-graph).
118
101
119
102
## Next steps
120
103
121
-
If you didn't see your problem or are unable to solve your issue, visit one of the following
122
-
channels for more support:
104
+
If you didn't see your problem or are unable to solve your issue, visit one of the following channels for more support:
- Connect with [@AzureSupport](https://twitter.com/azuresupport) - the official Microsoft Azure
127
-
account for improving customer experience by connecting the Azure community to the right
128
-
resources: answers, support, and experts.
129
-
- If you need more help, you can file an Azure support incident. Go to the
130
-
[Azure support site](https://azure.microsoft.com/support/options/) and select **Get Support**.
106
+
- Get answers from Azure experts through [Azure Forums](https://azure.microsoft.com/support/forums/).
107
+
- Connect with [@AzureSupport](https://twitter.com/azuresupport) - the official Microsoft Azure account for improving customer experience by connecting the Azure community to the right resources: answers, support, and experts.
108
+
- If you need more help, you can file an Azure support incident. Go to the [Azure support site](https://azure.microsoft.com/support/options/) and select **Get Support**.
0 commit comments