Skip to content

Commit 578cb06

Browse files
committed
freshness updates
1 parent 5e8aaf7 commit 578cb06

File tree

2 files changed

+22
-46
lines changed

2 files changed

+22
-46
lines changed

articles/governance/resource-graph/reference/keyboard-shortcuts.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
---
22
title: Keyboard shortcuts in the Azure portal for Azure Resource Graph Explorer
33
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
55
ms.topic: reference
66
ms.custom: accessibility
77
---
8+
89
# Keyboard shortcuts for Azure Resource Graph Explorer
910

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).
1412

1513
## Keyboard shortcuts for editing queries
1614

@@ -62,4 +60,4 @@ other pages, visit
6260
## Next steps
6361

6462
- [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)
Lines changed: 18 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
11
---
2-
title: Troubleshoot common errors
2+
title: Troubleshoot common errors for Azure Resource Graph
33
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
55
ms.topic: troubleshooting
66
---
77

88
# Troubleshoot errors using Azure Resource Graph
99

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.
1211

1312
## Finding error details
1413

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.
1815

1916
## General errors
2017

@@ -26,10 +23,7 @@ Customers making large or frequent resource queries have requests throttled.
2623

2724
#### Cause
2825

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).
3327

3428
#### Resolution
3529

@@ -44,19 +38,15 @@ There are several methods of dealing with throttled requests:
4438

4539
#### Issue
4640

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.
5042

5143
#### Cause
5244

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.
5546

5647
#### Resolution
5748

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.
6050

6151
```azurepowershell-interactive
6252
# Replace this query with your own
@@ -85,46 +75,34 @@ $response
8575

8676
#### Issue
8777

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.
9079

9180
#### Cause
9281

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.
9583

9684
#### Resolution
9785

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`.
10087

10188
### Scenario: No read permission to all subscriptions in list
10289

10390
#### Issue
10491

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.
10793

10894
#### Cause
10995

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.
11297

11398
#### Resolution
11499

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).
118101

119102
## Next steps
120103

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:
123105

124-
- Get answers from Azure experts through
125-
[Azure Forums](https://azure.microsoft.com/support/forums/).
126-
- 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

Comments
 (0)