Skip to content

Commit 74b03e9

Browse files
authored
Merge branch 'MicrosoftDocs:main' into MSFTeegarden-patch-64-274566
2 parents 871f5a5 + 07428c9 commit 74b03e9

File tree

363 files changed

+7044
-1619
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

363 files changed

+7044
-1619
lines changed

articles/active-directory-b2c/partner-strata.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ ms.subservice: B2C
1717

1818
# Tutorial to configure Azure Active Directory B2C with Strata
1919

20-
> [!CAUTION]
21-
> This article references CentOS, a Linux distribution that is nearing End Of Life (EOL) status. Please consider your use and planning accordingly. For more information, see the [CentOS End Of Life guidance](~/articles/virtual-machines/workloads/centos/centos-end-of-life.md).
22-
2320
In this tutorial, learn how to integrate Azure Active Directory B2C (Azure AD B2C) with Strata [Maverics Identity Orchestrator](https://www.strata.io/), which helps protect on-premises applications. It connects to identity systems, migrates users and credentials, synchronizes policies and configurations, and abstracts authentication and session management. Use Strata to transition from legacy, to Azure AD B2C, without rewriting applications.
2421

2522
The solution has the following benefits:
@@ -98,7 +95,7 @@ Use the instructions in the following sections to configure an Orchestrator inst
9895

9996
You can run your Orchestrator instance on any server, whether on-premises or in a public cloud infrastructure by provider such as Azure, AWS, or GCP.
10097

101-
- **Operating System**: REHL 7.7 or higher, CentOS 7+
98+
- **Operating System**: RHEL 7.7 or higher
10299
- **Disk**: 10 GB (small)
103100
- **Memory**: 16 GB
104101
- **Ports**: 22 (SSH/SCP), 443, 80

articles/advisor/advisor-get-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Get started with Azure Advisor
2+
title: Azure Advisor portal basics
33
description: Get started with Azure Advisor.
44
author: mabrahms
55
ms.author: v-mabrahms
@@ -9,7 +9,7 @@ ms.date: 03/07/2024
99

1010
---
1111

12-
# Get started with Azure Advisor
12+
# Azure Advisor portal basics
1313

1414
Learn how to access Advisor through the Azure portal, get and manage recommendations, and configure Advisor settings.
1515

articles/advisor/azure-advisor-score.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: Optimize Azure workloads by using Advisor score
2+
title: Use Advisor score
33
description: Use Azure Advisor score to get the most out of Azure.
44
ms.topic: article
55
ms.date: 09/09/2020
66

77
---
88

9-
# Optimize Azure workloads by using Advisor score
9+
# Use Advisor score
1010

1111
## Introduction to Advisor score
1212

includes/resource-graph/samples/bycat/azure-advisor.md renamed to articles/advisor/includes/azure-advisor.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,28 @@
11
---
2-
author: davidsmatlak
3-
ms.service: resource-graph
2+
ms.service: advisor
43
ms.topic: include
54
ms.date: 07/07/2022
6-
ms.author: davidsmatlak
7-
ms.custom: generated
5+
author: ikhapova
6+
ms.author: ikhapova
87
---
98

109
### Get cost savings summary from Azure Advisor
1110

12-
This query summarizes the cost savings of each [Azure Advisor](../../../../articles/advisor/advisor-overview.md) recommendation.
11+
This query summarizes the cost savings of each [Azure Advisor](../advisor-overview.md) recommendation.
1312

1413
```kusto
1514
AdvisorResources
1615
| where type == 'microsoft.advisor/recommendations'
1716
| where properties.category == 'Cost'
1817
| extend
19-
resources = tostring(properties.resourceMetadata.resourceId),
20-
savings = todouble(properties.extendedProperties.savingsAmount),
21-
solution = tostring(properties.shortDescription.solution),
22-
currency = tostring(properties.extendedProperties.savingsCurrency)
18+
resources = tostring(properties.resourceMetadata.resourceId),
19+
savings = todouble(properties.extendedProperties.savingsAmount),
20+
solution = tostring(properties.shortDescription.solution),
21+
currency = tostring(properties.extendedProperties.savingsCurrency)
2322
| summarize
24-
dcount(resources),
25-
bin(sum(savings), 0.01)
26-
by solution, currency
23+
dcount(resources),
24+
bin(sum(savings), 0.01)
25+
by solution, currency
2726
| project solution, dcount_resources, sum_savings, currency
2827
| order by sum_savings desc
2928
```

articles/advisor/permissions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: Permissions in Azure Advisor
2+
title: Roles and permissions
33
description: Advisor permissions and how they may block your ability to configure subscriptions or postpone or dismiss recommendations.
44
ms.topic: article
5-
ms.date: 04/03/2019
5+
ms.date: 05/03/2024
66
---
77

8-
# Permissions in Azure Advisor
8+
# Roles and permissions
99

1010
Azure Advisor provides recommendations based on the usage and configuration of your Azure resources and subscriptions. Advisor uses the [built-in roles](../role-based-access-control/built-in-roles.md) provided by [Azure role-based access control (Azure RBAC)](../role-based-access-control/overview.md) to manage your access to recommendations and Advisor features.
1111

articles/advisor/resource-graph-samples.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,13 @@ ms.custom: subject-resourcegraph-sample
77
---
88
# Azure Resource Graph sample queries for Azure Advisor
99

10-
This page is a collection of [Azure Resource Graph](../governance/resource-graph/overview.md) sample queries for Azure Advisor. For a complete list of Azure Resource Graph samples, see [Resource Graph samples by Category](../governance/resource-graph/samples/samples-by-category.md) and [Resource Graph samples by Table](../governance/resource-graph/samples/samples-by-table.md).
10+
This page is a collection of [Azure Resource Graph](../governance/resource-graph/overview.md) sample queries for Azure Advisor.
1111

1212
## Sample queries
1313

14-
[!INCLUDE [azure-resource-graph-samples-cat-advisor](../../includes/resource-graph/samples/bycat/azure-advisor.md)]
14+
[!INCLUDE [azure-resource-graph-samples-cat-advisor](./includes/azure-advisor.md)]
1515

1616
## Next steps
1717

1818
- Learn more about the [query language](../governance/resource-graph/concepts/query-language.md).
1919
- Learn more about how to [explore resources](../governance/resource-graph/concepts/explore-resources.md).
20-
- See samples of [Starter language queries](../governance/resource-graph/samples/starter.md).
21-
- See samples of [Advanced language queries](../governance/resource-graph/samples/advanced.md).

articles/advisor/toc.yml

Lines changed: 21 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,16 @@
66
href: advisor-overview.md
77
- name: What's new?
88
href: advisor-release-notes.md
9-
- name: Quickstarts
9+
- name: Get started
1010
items:
11-
- name: Get started with Advisor
11+
- name: Advisor portal basics
1212
href: advisor-get-started.md
13+
- name: Roles and permissions
14+
href: permissions.md
15+
- name: Use Advisor score
16+
href: azure-advisor-score.md
17+
- name: Configure recommendations view
18+
href: view-recommendations.md
1319
- name: Configure alerts for new recommendations
1420
items:
1521
- name: Azure portal
@@ -20,22 +26,20 @@
2026
- name: ARM template
2127
displayName: Resource Manager
2228
href: advisor-alerts-arm.md
23-
- name: Concepts
29+
- name: Recommendations list
2430
items:
25-
- name: Recommendations
26-
items:
27-
- name: Cost
28-
href: advisor-reference-cost-recommendations.md
29-
- name: Operational Excellence
30-
href: advisor-reference-operational-excellence-recommendations.md
31-
- name: Performance
32-
href: advisor-reference-performance-recommendations.md
33-
- name: Reliability
34-
href: advisor-reference-reliability-recommendations.md
35-
- name: Security
36-
href: ../defender-for-cloud/recommendations-reference.md
37-
- name: Sovereign clouds
38-
href: advisor-sovereign-clouds.md
31+
- name: Cost
32+
href: advisor-reference-cost-recommendations.md
33+
- name: Operational Excellence
34+
href: advisor-reference-operational-excellence-recommendations.md
35+
- name: Performance
36+
href: advisor-reference-performance-recommendations.md
37+
- name: Reliability
38+
href: advisor-reference-reliability-recommendations.md
39+
- name: Security
40+
href: ../defender-for-cloud/recommendations-reference.md
41+
- name: Sovereign clouds
42+
href: advisor-sovereign-clouds.md
3943
- name: Samples
4044
items:
4145
- name: Azure Resource Graph queries
@@ -60,20 +64,12 @@
6064
href: advisor-how-to-performance-resize-high-usage-vm-recommendations.md
6165
- name: Use tags to filter recommendations and score
6266
href: advisor-tag-filtering.md
63-
- name: Configure recommendations
64-
href: view-recommendations.md
65-
- name: Permissions and blocked actions
66-
href: permissions.md
67-
- name: Configure Alerts for recommendations
68-
href: advisor-alerts-portal.md
6967
- name: Configure recommendations summary
7068
href: advisor-recommendations-digest.md
7169
- name: Bulk remediation for recommendations
7270
href: advisor-quick-fix.md
7371
- name: Advisor data in Azure Resource Graph
7472
href: advisor-azure-resource-graph.md
75-
- name: Consume Advisor score
76-
href: azure-advisor-score.md
7773
- name: Calculate total cost savings
7874
href: advisor-how-to-calculate-total-cost-savings.md
7975
- name: Reference

articles/advisor/view-recommendations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: View Azure Advisor recommendations that matter to you
2+
title: Configure Azure Advisor recommendations view
33
description: View and filter Azure Advisor recommendations to reduce noise.
44
ms.topic: article
55
ms.date: 01/02/2024
66
---
77

8-
# View Azure Advisor recommendations that matter to you
8+
# Configure Azure Advisor recommendations view
99

1010
Azure Advisor provides recommendations to help you optimize your Azure deployments. Within Advisor, you have access to a few features that help you to narrow down your recommendations to only those that matter to you.
1111

articles/aks/azure-nfs-volume.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: Manually create a Linux NFS Server persistent volume for Azure Kubernetes Service
33
titleSuffix: Azure Kubernetes Service
4-
description: Learn how to manually create an Ubuntu Linux NFS Server persistent volume for use with pods in Azure Kubernetes Service (AKS)
5-
author: ozboms
4+
description: Learn how to manually create an Ubuntu Linux NFS Server persistent volume for use with pods in Azure Kubernetes Service (AKS).
5+
author: tamram
66
ms.topic: article
77
ms.date: 01/24/2024
88
ms.subservice: aks-storage
99
ms.custom: linux-related-content
10-
ms.author: obboms
10+
ms.author: tamram
1111
---
1212

1313
# Manually create and use a Linux NFS (Network File System) Server with Azure Kubernetes Service (AKS)

articles/api-management/backends.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,4 +267,5 @@ For **Developer** and **Premium** tiers, an API Management instance deployed in
267267

268268
## Related content
269269

270+
* Blog: [Using Azure API Management circuit breaker and load balancing with Azure OpenAI Service](https://techcommunity.microsoft.com/t5/fasttrack-for-azure/using-azure-api-management-circuit-breaker-and-load-balancing/ba-p/4041003)
270271
* Set up a [Service Fabric backend](how-to-configure-service-fabric-backend.yml) using the Azure portal.

0 commit comments

Comments
 (0)