Skip to content

Commit 30a05e8

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into labelvWAN
2 parents 9120f2a + 7f1ae32 commit 30a05e8

37 files changed

+331
-354
lines changed

.openpublishing.redirection.json

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4089,7 +4089,27 @@
40894089
"redirect_document_id": false
40904090
},
40914091
{
4092-
"source_path_from_root": "/articles/data-factory/continuous-integration-delivery-automate-github-actions.md",
4092+
"source_path_from_root": "/articles/openshift/tutorial-create-cluster.md",
4093+
"redirect_url": "/azure/openshift/create-cluster",
4094+
"redirect_document_id": false
4095+
},
4096+
{
4097+
"source_path_from_root": "/articles/openshift/tutorial-connect-cluster.md",
4098+
"redirect_url": "/azure/openshift/connect-cluster",
4099+
"redirect_document_id": false
4100+
},
4101+
{
4102+
"source_path_from_root": "/articles/openshift/tutorial-delete-cluster.md",
4103+
"redirect_url": "/azure/openshift/delete-cluster",
4104+
"redirect_document_id": false
4105+
},
4106+
{
4107+
"source_path_from_root": "/articles/openshift/quickstart-portal.md",
4108+
"redirect_url": "/azure/openshift/create-cluster",
4109+
"redirect_document_id": false
4110+
},
4111+
{
4112+
"source_path_from_root": "/articles/data-factory/continuous-integration-delivery-automate-github-actions.md",
40934113
"redirect_url": "/azure",
40944114
"redirect_document_id": false
40954115
}

articles/ai-services/openai/how-to/quota.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: mrbullwinkle
77
manager: nitinme
88
ms.service: azure-ai-openai
99
ms.topic: how-to
10-
ms.date: 05/31/2024
10+
ms.date: 06/18/2024
1111
ms.author: mbullwin
1212
---
1313

@@ -91,6 +91,9 @@ As each request is received, Azure OpenAI computes an estimated max processed-to
9191

9292
As requests come into the deployment endpoint, the estimated max-processed-token count is added to a running token count of all requests that is reset each minute. If at any time during that minute, the TPM rate limit value is reached, then further requests will receive a 429 response code until the counter resets.
9393

94+
> [!IMPORTANT]
95+
> The token count used in the rate limit calculation is an estimate based in part on the character count of the API request. The rate limit token estimate is not the same as the token calculation that is used for billing/determining that a request is below a model's input token limit. Due to the approximate nature of the rate limit token calculation, it is expected behavior that a rate limit can be triggered prior to what might be expected in comparison to an exact token count measurement for each request.
96+
9497
RPM rate limits are based on the number of requests received over time. The rate limit expects that requests be evenly distributed over a one-minute period. If this average flow isn't maintained, then requests may receive a 429 response even though the limit isn't met when measured over the course of a minute. To implement this behavior, Azure OpenAI Service evaluates the rate of incoming requests over a small period of time, typically 1 or 10 seconds. If the number of requests received during that time exceeds what would be expected at the set RPM limit, then new requests will receive a 429 response code until the next evaluation period. For example, if Azure OpenAI is monitoring request rate on 1-second intervals, then rate limiting will occur for a 600-RPM deployment if more than 10 requests are received during each 1-second period (600 requests per minute = 10 requests per second).
9598

9699
### Rate limit best practices

articles/governance/includes/resource-graph/preview/change-analysis.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ ms.service: resource-graph
33
author: iancarter-msft
44
ms.author: iancarter
55
ms.topic: include
6-
ms.date: 03/12/2024
6+
ms.date: 06/14/2024
77
---
88

99
> [!IMPORTANT]
10-
> The Change Analysis experience in the Azure portal is in preview and migrating from Azure Monitor to Azure Resource Graph. Previews are partially covered by customer support on a best-effort basis. As such, these features aren't meant for production use.
10+
> The Change Analysis experience in the Azure portal is in preview and migrating from Azure Monitor to Azure Resource Graph. Previews are partially covered by customer support on a best-effort basis. As such, these features aren't meant for production use.

articles/governance/resource-graph/changes/get-resource-changes.md

Lines changed: 67 additions & 50 deletions
Large diffs are not rendered by default.
Lines changed: 24 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
11
---
2-
title: Analyze changes to your Azure resources
3-
description: Learn to use the Resource Graph Change Analysis tool to explore and analyze changes in your resources.
2+
title: Analyze changes to your Azure resources with Change Analysis
3+
description: Learn to use the Azure Resource Graph Change Analysis tool to explore and analyze changes in your resources.
44
author: iancarter-msft
55
ms.author: iancarter
6-
ms.date: 03/19/2024
6+
ms.date: 06/14/2024
77
ms.topic: conceptual
88
---
99

1010
# Analyze changes to your Azure resources
1111

1212
Resources change through the course of daily use, reconfiguration, and even redeployment. While most change is by design, sometimes it can break your application. With the power of Azure Resource Graph, you can find when a resource changed due to a [control plane operation](../../../azure-resource-manager/management/control-plane-and-data-plane.md) sent to the Azure Resource Manager URL.
1313

14-
Change Analysis goes beyond standard monitoring solutions, alerting you to live site issues, outages, or component failures and explaining the causes behind them.
14+
Change Analysis goes beyond standard monitoring solutions, alerting you to live site issues, outages, or component failures and explaining the causes behind them.
1515

1616
## Change Analysis in the portal (preview)
1717

18-
Change Analysis experiences across the Azure portal are powered using the Azure Resource Graph [`Microsoft.ResourceGraph/resources` API](/rest/api/azureresourcegraph/resourcegraph/resources/resources). You can query this API for changes made to many of the Azure resources you interact with, including App Services (`Microsoft.Web/sites`) or Virtual Machines (`Microsoft.Compute/virtualMachines`).
18+
Change Analysis experiences across the Azure portal are powered using the Azure Resource Graph [`Microsoft.ResourceGraph/resources` API](/rest/api/azureresourcegraph/resourcegraph/resources/resources). You can query this API for changes made to many of the Azure resources you interact with, including App Services (`Microsoft.Web/sites`) or Virtual Machines (`Microsoft.Compute/virtualMachines`).
1919

2020
The Azure Resource Graph Change Analysis portal experience provides:
21-
22-
- An onboarding-free experience, giving all subscriptions and resources access to change history
23-
- Tenant-wide querying, rather than select subscriptions
24-
- Change history summaries aggregated into cards at the top of the new Resource Graph Change Analysis blade
25-
- More extensive filtering capabilities
26-
- Improved accuracy and relevance of "changed by" change information, using [Change Actor functionality](https://techcommunity.microsoft.com/t5/azure-governance-and-management/announcing-the-public-preview-of-change-actor/ba-p/4076626)
21+
22+
- An onboarding-free experience, giving all subscriptions and resources access to change history.
23+
- Tenant-wide querying, rather than select subscriptions.
24+
- Change history summaries aggregated into cards at the top of the new Resource Graph Change Analysis.
25+
- More extensive filtering capabilities.
26+
- Improved accuracy and relevance of _changed by_ information, using _Change Actor_ functionality.
2727

2828
[Learn how to view the new Change Analysis experience in the portal.](./view-resource-changes.md)
2929

3030
## Supported resource types
3131

3232
Change Analysis supports changes to resource types from the following Resource Graph tables:
33-
- [`resources`](../reference/supported-tables-resources.md#resources)
34-
- [`resourcecontainers`](../reference/supported-tables-resources.md#resourcecontainers)
35-
- [`healthresources`](../reference/supported-tables-resources.md#healthresources)
33+
- [`resources`](../reference/supported-tables-resources.md#resources)
34+
- [`resourcecontainers`](../reference/supported-tables-resources.md#resourcecontainers)
35+
- [`healthresources`](../reference/supported-tables-resources.md#healthresources)
3636

3737
You can compose and join tables to project change data any way you want.
3838

@@ -42,45 +42,42 @@ Changes are queryable for 14 days. For longer retention, you can [integrate your
4242

4343
## Cost
4444

45-
You can use Azure Resource Graph Change Analysis at no extra cost.
45+
You can use Azure Resource Graph Change Analysis at no extra cost.
4646

4747
## Change Analysis in Azure Resource Graph vs. Azure Monitor
4848

49-
The Change Analysis experience is in the process of moving from [Azure Monitor](../../../azure-monitor/change/change-analysis.md) to Azure Resource Graph. During this transition, you may see two options for Change Analysis when you search for it in the Azure portal:
49+
The Change Analysis experience is in the process of moving from [Azure Monitor](../../../azure-monitor/change/change-analysis.md) to Azure Resource Graph. During this transition, you might see two options for Change Analysis when you search for it in the Azure portal:
5050

5151
:::image type="content" source="./media/transitional-overview/change-analysis-portal-search.png" alt-text="Screenshot of the search results for Change Analysis in the Azure portal.":::
5252

5353
### 1. Azure Resource Graph Change Analysis
5454

55-
Azure Resource Graph Change Analysis ingests data into Resource Graph for queryability and powering the portal experience. Change Analysis data can be accessed using:
55+
Azure Resource Graph Change Analysis ingests data into Resource Graph for queries and to power the portal experience. Change Analysis data can be accessed using:
5656

57-
- The `POST Microsoft.ResourceGraph/resources` API _(preferred)_ for querying across tenants and subscriptions
57+
- The `POST Microsoft.ResourceGraph/resources` API _(preferred)_ for querying across tenants and subscriptions.
5858
- The following APIs _(under a specific scope, such as `LIST` changes and snapshots for a specific virtual machine):_
5959
- `GET/LIST Microsoft.Resources/Changes`
60-
- `GET/LIST Microsoft.Resources/Snapshots`
60+
- `GET/LIST Microsoft.Resources/Snapshots`
6161

62-
When a resource is created, updated, or deleted via the Azure Resource Manager control plane, Resource Graph uses its [Change Actor functionality](https://techcommunity.microsoft.com/t5/azure-governance-and-management/announcing-the-public-preview-of-change-actor/ba-p/4076626) to identify:
63-
- Who initiated a change in your resource
64-
- With which client the change was made
65-
- What [operation](../../../role-based-access-control/resource-provider-operations.md) was called
62+
When a resource is created, updated, or deleted via the Azure Resource Manager control plane, Resource Graph uses its [Change Actor functionality](./get-resource-changes.md) to identify the changes.
6663

6764
> [!NOTE]
6865
> Currently, Azure Resource Graph doesn't:
6966
>
70-
> - Observe changes made to a resource's data plane API, such as writing data to a table in a storage account.
67+
> - Observe changes made to a resource's data plane API, such as writing data to a table in a storage account.
7168
> - Support file and configuration changes over App Service.
7269
7370
### 2. Azure Monitor Change Analysis
7471

75-
In Azure Monitor, Change Analysis required you to query a resource provider, called `Microsoft.ChangeAnalysis`, which provided a simple API that abstracted resource change data from the Azure Resource Graph.
72+
In Azure Monitor, Change Analysis required you to query a resource provider, called `Microsoft.ChangeAnalysis`, which provided a simple API that abstracted resource change data from the Azure Resource Graph.
7673

7774
While this service successfully helped thousands of Azure customers, the `Microsoft.ChangeAnalysis` resource provider has insurmountable limitations that prevent it from servicing the needs and scale of all Azure customers across all public and sovereign clouds.
7875

79-
## Send feedback for more data
76+
## Send feedback for more data
8077

8178
Submit feedback via [the Change Analysis (Preview) experience](./view-resource-changes.md) in the Azure portal.
8279

8380
## Next steps
8481

8582
> [!div class="nextstepaction"]
86-
> [Get resource changes](../how-to/get-resource-changes.md)
83+
> [Get resource changes](../how-to/get-resource-changes.md)

articles/governance/resource-graph/changes/view-resource-changes.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
22
title: View resource changes in the Azure portal (preview)
3-
description: View resource changes via the Azure Resource Graph Change Analysis in the Azure portal.
3+
description: View resource changes with Azure Resource Graph Change Analysis in the Azure portal.
44
author: iancarter-msft
55
ms.author: iancarter
6-
ms.date: 03/15/2024
6+
ms.date: 06/14/2024
77
ms.topic: how-to
88
---
99

1010
# View resource changes in the Azure portal (preview)
1111

1212
[!INCLUDE [preview](../../includes/resource-graph/preview/change-analysis.md)]
1313

14-
Change Analysis provides data for various management and troubleshooting scenarios, helping you understand which changes to your application caused which breaking issues. In addition to [querying Resource Graph for resource changes](./get-resource-changes.md), you can also view all changes to your applications via the Azure portal.
14+
Change Analysis provides data for various management and troubleshooting scenarios, helping you understand which changes to your application caused which breaking issues. In addition to [querying Resource Graph for resource changes](./get-resource-changes.md), you can also view all changes to your applications via the Azure portal.
1515

1616
In this guide, you learn where to find Change Analysis in the portal and how to view, filter, and query changes.
1717

@@ -21,27 +21,27 @@ Change Analysis automatically collects snapshots of change data for all Azure re
2121

2222
:::image type="content" source="./media/view-resource-changes/all-resources-menu.png" alt-text="Screenshot of finding All Resources in the portal menu.":::
2323

24-
Select the **Changed resources** card. In this example, all Azure resources are returned with no specific subscription selected.
24+
Select **Changed resources**. In this example, all Azure resources are returned with no specific subscription selected.
2525

26-
:::image type="content" source="./media/view-resource-changes/change-analysis-card.png" alt-text="Screenshot of the All Resources page and highlighting the Changed resources card.":::
26+
:::image type="content" source="./media/view-resource-changes/change-analysis-card.png" alt-text="Screenshot of the All Resources page and highlighting the Changed resources.":::
2727

28-
Review the results in the **Changed resources** blade.
28+
Review the results in **Changed resources**.
2929

30-
:::image type="content" source="./media/view-resource-changes/change-history-results.png" alt-text="Screenshot of the Azure Resource Graph Change Analysis resources blade.":::
30+
:::image type="content" source="./media/view-resource-changes/change-history-results.png" alt-text="Screenshot of the Azure Resource Graph Change Analysis resources.":::
3131

3232
## Filter and sort Change Analysis results
3333

3434
Realistically, you only want to see the change history results for the resources you work with. You can use the filters and sorting categories in the Azure portal to weed out results unnecessary to your project.
3535

3636
### Filter
3737

38-
Use any of the filters available at the top of the Change Analysis blade to narrow down the change history results to your specific needs.
38+
Use any of the filters available at the top of **Change Analysis** to narrow down the change history results to your specific needs.
3939

40-
:::image type="content" source="./media/view-resource-changes/changes-filter.png" alt-text="Screenshot of the filters available on the Change Analysis blade that help narrow down the Change Analysis results.":::
40+
:::image type="content" source="./media/view-resource-changes/changes-filter.png" alt-text="Screenshot of the filters available for Change Analysis that help narrow down the Change Analysis results.":::
4141

42-
You may need to reset filters set on the **All resources** blade in order to use the resource changes filters.
42+
You might need to reset filters set on **All resources** in order to use the resource changes filters.
4343

44-
:::image type="content" source="./media/view-resource-changes/reset-filters.png" alt-text="Screenshot of the banner indicating that you may need to reset filters from the All Resources blade.":::
44+
:::image type="content" source="./media/view-resource-changes/reset-filters.png" alt-text="Screenshot of the banner that indicates you might need to reset filters from All Resources.":::
4545

4646
| Filter | Description |
4747
| ------ | ----------- |
@@ -59,7 +59,7 @@ You may need to reset filters set on the **All resources** blade in order to use
5959

6060
### Sort
6161

62-
In the **Change Analysis** blade, you can organize the results into groups using the **Group by...** drop-down menu.
62+
In **Change Analysis**, you can organize the results into groups using the **Group by...** drop-down menu.
6363

6464
:::image type="content" source="./media/view-resource-changes/change-grouping.png" alt-text="Screenshot of the drop-down for selecting how to group Change Analysis results.":::
6565

@@ -70,16 +70,16 @@ In the **Change Analysis** blade, you can organize the results into groups using
7070
| Resource Group | Groups resources based on their resource group. |
7171
| Type | Groups resources based on their Azure service type. |
7272
| Resource | Sorts resources per their resource name. |
73-
| Change Type | Organizes resources based on the collected change type. Values include "Create", "Update", and "Delete". |
74-
| Client Type | Sorts by how the change is initiated and performed. Values include "CLI" and "ARM template". |
73+
| Change Type | Organizes resources based on the collected change type. Values include _Create_, _Update_, and _Delete_. |
74+
| Client Type | Sorts by how the change is initiated and performed. Values include _CLI_ and _ARM template_. |
7575
| Changed By | Groups resource changes by who made the change. Values include user email ID or subscription ID. |
76-
| Changed By Type | Groups resource changes based on the descriptor of who made the change. Values include "User", "Application". |
76+
| Changed By Type | Groups resource changes based on the descriptor of who made the change. Values include _User_, _Application_. |
7777
| Operation | Groups resources based on [their resource provider operations](../../../role-based-access-control/resource-provider-operations.md). |
7878
| Correlation ID | Organizes the resource changes by [the operation's unique identifier](../../../expressroute/get-correlation-id.md). |
7979

8080
### Edit columns
8181

82-
You can add and remove columns, or change the column order in the Change Analysis results. In the **Change Analysis** blade, select **Manage view** > **Edit columns**.
82+
You can add and remove columns, or change the column order in the Change Analysis results. In **Change Analysis** select **Manage view** > **Edit columns**.
8383

8484
:::image type="content" source="./media/view-resource-changes/manage-results-view.png" alt-text="Screenshot of the drop-down for selecting the option for editing columns for the results.":::
8585

@@ -89,7 +89,7 @@ In the **Edit columns** pane, make your changes and then select **Save** to appl
8989

9090
#### Add a column
9191

92-
Click **+ Add column**.
92+
Select **+ Add column**.
9393

9494
:::image type="content" source="./media/view-resource-changes/add-column-button.png" alt-text="Screenshot of selecting the button for adding a new column.":::
9595

@@ -99,9 +99,9 @@ Select a column property from the dropdown in the new column field.
9999

100100
#### Delete a column
101101

102-
Select the trashcan icon to delete a column.
102+
To delete a column, select the trash can icon.
103103

104-
:::image type="content" source="./media/view-resource-changes/delete-column.png" alt-text="Screenshot of the trashcan icon for deleting a column.":::
104+
:::image type="content" source="./media/view-resource-changes/delete-column.png" alt-text="Screenshot of the trash can icon to delete a column.":::
105105

106106
#### Reorder columns
107107

@@ -117,4 +117,4 @@ Select **Reset to defaults** to revert your changes.
117117

118118
## Next steps
119119

120-
Learn more about [Azure Resource Graph](../overview.md)
120+
Learn more about [Azure Resource Graph](../overview.md)

0 commit comments

Comments
 (0)