Skip to content

Commit 585576f

Browse files
authored
Merge pull request #197380 from TimShererWithAquent/t596438j
Edits to improve SEO and usability
2 parents b04c315 + 12c283d commit 585576f

File tree

5 files changed

+51
-43
lines changed

5 files changed

+51
-43
lines changed

articles/mariadb/howto-configure-audit-logs-cli.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@ author: savjani
55
ms.author: pariks
66
ms.service: mariadb
77
ms.topic: how-to
8-
ms.date: 6/24/2020
9-
ms.custom: devx-track-azurecli
8+
ms.date: 05/06/2022
9+
ms.custom:
10+
- devx-track-azurecli
11+
- kr2b-contr-experiment
1012
---
1113

1214
# Configure and access Azure Database for MariaDB audit logs in the Azure CLI
@@ -32,22 +34,26 @@ To complete this guide:
3234
3335
Enable and configure audit logging using the following steps:
3436

35-
1. Turn on audit logs by setting the **audit_logs_enabled** parameter to "ON".
37+
1. Turn on audit logs by setting the **audit_logs_enabled** parameter to "ON".
38+
3639
```azurecli-interactive
3740
az mariadb server configuration set --name audit_log_enabled --resource-group myresourcegroup --server mydemoserver --value ON
3841
```
3942
4043
1. Select the [event types](concepts-audit-logs.md#configure-audit-logging) to be logged by updating the **audit_log_events** parameter.
44+
4145
```azurecli-interactive
4246
az mariadb server configuration set --name audit_log_events --resource-group myresourcegroup --server mydemoserver --value "ADMIN,CONNECTION"
4347
```
4448
4549
1. Add any MariaDB users to be excluded from logging by updating the **audit_log_exclude_users** parameter. Specify users by providing their MariaDB user name.
50+
4651
```azurecli-interactive
4752
az mariadb server configuration set --name audit_log_exclude_users --resource-group myresourcegroup --server mydemoserver --value "azure_superuser"
4853
```
4954
5055
1. Add any specific MariaDB users to be included for logging by updating the **audit_log_include_users** parameter. Specify users by providing their MariaDB user name.
56+
5157
```azurecli-interactive
5258
az mariadb server configuration set --name audit_log_include_users --resource-group myresourcegroup --server mydemoserver --value "sampleuser"
5359
```

articles/mariadb/howto-configure-server-parameters-using-powershell.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
---
2-
title: Configure server parameters - Azure PowerShell - Azure Database for MariaDB
2+
title: Configure Azure Database for MariaDB - Azure PowerShell
33
description: This article describes how to configure the service parameters in Azure Database for MariaDB using PowerShell.
44
author: savjani
55
ms.author: pariks
66
ms.service: mariadb
77
ms.devlang: azurepowershell
88
ms.topic: how-to
9-
ms.date: 10/1/2020
10-
ms.custom: devx-track-azurepowershell
9+
ms.date: 05/06/2022
10+
ms.custom:
11+
- devx-track-azurepowershell
12+
- kr2b-contr-experiment
1113
---
1214

1315
# Configure server parameters in Azure Database for MariaDB using PowerShell
@@ -80,4 +82,4 @@ Update-AzMariaDbConfiguration -Name slow_query_log -ResourceGroupName myresource
8082
## Next steps
8183

8284
> [!div class="nextstepaction"]
83-
> [Auto grow storage in Azure Database for MariaDB server using PowerShell](howto-auto-grow-storage-powershell.md).
85+
> [Auto grow storage in Azure Database for MariaDB server using PowerShell](howto-auto-grow-storage-powershell.md).

articles/mariadb/howto-read-replicas-powershell.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
11
---
2-
title: Manage read replicas - Azure PowerShell - Azure Database for MariaDB
3-
description: Learn how to set up and manage read replicas in Azure Database for MariaDB using PowerShell.
2+
title: Manage Azure Database for MariaDB read replicas
3+
description: Learn how to set up and manage read replicas in Azure Database for MariaDB using PowerShell in the General Purpose or Memory Optimized pricing tiers.
44
author: savjani
55
ms.author: pariks
66
ms.service: mariadb
77
ms.topic: how-to
8-
ms.date: 6/10/2020
9-
ms.custom: devx-track-azurepowershell
8+
ms.date: 05/06/2022
9+
ms.custom:
10+
- devx-track-azurepowershell
11+
- kr2b-contr-experiment
1012
---
1113

1214
# How to create and manage read replicas in Azure Database for MariaDB using PowerShell
1315

14-
In this article, you learn how to create and manage read replicas in the Azure Database for MariaDB service using PowerShell. To learn more about read replicas, see the
15-
[overview](concepts-read-replicas.md).
16-
17-
## Azure PowerShell
16+
In this article, you learn how to create and manage read replicas in the Azure Database for MariaDB service using PowerShell. To learn more about read replicas, see the [overview](concepts-read-replicas.md).
1817

1918
You can create and manage read replicas using PowerShell.
2019

@@ -117,4 +116,4 @@ Remove-AzMariaDbServer -Name mydemoserver -ResourceGroupName myresourcegroup
117116
## Next steps
118117

119118
> [!div class="nextstepaction"]
120-
> [Restart Azure Database for MariaDB server using PowerShell](howto-restart-server-powershell.md)
119+
> [Restart Azure Database for MariaDB server using PowerShell](howto-restart-server-powershell.md)

articles/mariadb/howto-restart-server-powershell.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
---
2-
title: Restart server - Azure PowerShell - Azure Database for MariaDB
3-
description: This article describes how you can restart an Azure Database for MariaDB server using PowerShell.
2+
title: Restart Azure Database for MariaDB server - Azure PowerShell
3+
description: Learn how you can restart an Azure Database for MariaDB server using PowerShell. The time required for a restart depends on the MariaDB recovery process.
44
author: savjani
55
ms.author: pariks
66
ms.service: mariadb
77
ms.topic: how-to
8-
ms.date: 5/26/2020
9-
ms.custom: devx-track-azurepowershell
8+
ms.date: 05/06/2022
9+
ms.custom:
10+
- devx-track-azurepowershell
11+
- kr2b-contr-experiment
1012
---
1113

1214
# Restart Azure Database for MariaDB server using PowerShell
1315

14-
This topic describes how you can restart an Azure Database for MariaDB server. You may need to restart
16+
This article describes how you can restart an Azure Database for MariaDB server. You may need to restart
1517
your server for maintenance reasons, which causes a short outage during the operation.
1618

1719
The server restart is blocked if the service is busy. For example, the service may be processing a
Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
---
2-
title: Configure metric alerts - Azure portal - Azure Database for MySQL - Flexible Server
2+
title: Configure Azure Database for MySQL metric alerts
33
description: This article describes how to configure and access metric alerts for Azure Database for MySQL Flexible Server from the Azure portal.
44
author: savjani
55
ms.author: pariks
66
ms.service: mysql
77
ms.topic: how-to
8-
ms.date: 9/21/2020
8+
ms.date: 05/06/2022
9+
ms.custom: kr2b-contr-experiment
910
---
1011

1112
# Set up alerts on metrics for Azure Database for MySQL - Flexible Server
@@ -19,7 +20,7 @@ The alert triggers when the value of a specified metric crosses a threshold you
1920
You can configure an alert to do the following actions when it triggers:
2021

2122
* Send email notifications to the service administrator and co-administrators
22-
* Send email to additional emails that you specify.
23+
* Send email to other emails that you specify
2324
* Call a webhook
2425

2526
You can configure and get information about alert rules using:
@@ -33,42 +34,40 @@ You can configure and get information about alert rules using:
3334
1. In the [Azure portal](https://portal.azure.com/), select the Azure Database for MySQL flexible server you want to monitor.
3435
2. Under the **Monitoring** section of the sidebar, select **Alerts**.
3536
3. Select **+ New alert rule**.
36-
4. The **Create rule** page opens. Fill in the required information:
37+
4. The **Create rule** page opens. Fill in the required information.
3738
5. Within the **Condition** section, choose **Select condition**.
38-
6. You will see a list of supported signals, select the metric you want to create an alert on. For example, select "Storage percent".
39-
7. You will see a chart for the metric for the last six hours. Use the **Chart period** dropdown to select to see longer history for the metric.
40-
8. Select the **Threshold** type (ex. "Static" or "Dynamic"), **Operator** (ex. "Greater than"), and **Aggregation type** (ex. average). This will determine the logic that the metric alert rule will evaluate.
41-
- If you are using a **Static** threshold, continue to define a **Threshold value** (ex. 85 percent). The metric chart can help determine what might be a reasonable threshold.
42-
- If you are using a **Dynamic** threshold, continue to define the **Threshold sensitivity**. The metric chart will display the calculated thresholds based on recent data. [Learn more about Dynamic Thresholds condition type and sensitivity options](../../azure-monitor/alerts/alerts-dynamic-thresholds.md).
39+
6. You'll see a list of supported signals, select the metric you want to create an alert on. For example, select Storage percent.
40+
7. You'll see a chart for the metric for the last six hours. Use the **Chart period** dropdown to select to see longer history for the metric.
41+
8. Select the **Threshold** type (ex. "Static" or "Dynamic"), **Operator** (ex. "Greater than"), and **Aggregation type** (ex. average). This selection determines the logic that the metric alert rule will evaluate.
42+
* If you're using a **Static** threshold, continue to define a **Threshold value** (ex. 85 percent). The metric chart can help determine what might be a reasonable threshold.
43+
* If you're using a **Dynamic** threshold, continue to define the **Threshold sensitivity**. The metric chart will display the calculated thresholds based on recent data. [Learn more about Dynamic Thresholds condition type and sensitivity options](../../azure-monitor/alerts/alerts-dynamic-thresholds.md).
4344
9. Refine the condition by adjusting **Aggregation granularity (Period)** interval over which data points are grouped using the aggregation type function (ex. "30 minutes"), and **Frequency** (ex "Every 15 Minutes").
44-
10. Click **Done**.
45+
10. Select **Done**.
4546
11. Add an action group. An action group is a collection of notification preferences defined by the owner of an Azure subscription. Within the **Action Groups** section, choose **Select action group** to select an already existing action group to attach to the alert rule.
46-
12. You can also create a new action group to receive notifications on the alert. Refer to [create and manage action group](../../azure-monitor/alerts/action-groups.md) for more information.
47-
13. To create a new action group, choose **+ Create action group**. Fill out the "Create action group" form with a **Subscription**, **Resource group**, **Action group name** and **Display Name**.
47+
12. You can also create a new action group to receive notifications on the alert. For more information, see [create and manage action group](../../azure-monitor/alerts/action-groups.md).
48+
13. To create a new action group, choose **+ Create action group**. Fill out the **Create action group** form with a **Subscription**, **Resource group**, **Action group name** and **Display Name**.
4849
14. Configure **Notifications** for action group.
4950

50-
In **Notification type**, choose "Email Azure Resource Manager Role" to select subscription Owners, Contributors, and Readers to receive notifications. Choose the **Azure Resource Manager Role** for sending the email.
51+
In **Notification type**, choose **Email Azure Resource Manager Role** to select subscription Owners, Contributors, and Readers to receive notifications. Choose the **Azure Resource Manager Role** for sending the email.
5152
You can also choose **Email/SMS message/Push/Voice** to send notifications to specific recipients.
5253

5354
Provide **Name** to the notification type and select **Review + Create** when completed.
5455

55-
<!--:::image type="content" source="./media/howto-alert-on-metric/10-action-group-type.png" alt-text="Action group":::-->
56-
5756
15. Fill in **Alert rule details** like **Alert rule name**, **Description**, **Save alert rule to resource group** and **Severity**.
5857

59-
<!--:::image type="content" source="./media/howto-alert-on-metric/11-name-description-severity.png" alt-text="Action group":::-->
60-
6158
16. Select **Create alert rule** to create the alert.
6259
Within a few minutes, the alert is active and triggers as previously described.
60+
6361
## Manage your alerts
64-
Once you have created an alert, you can select it and do the following actions:
62+
63+
Once you create an alert, you can select it and do the following actions:
6564

6665
* View a graph showing the metric threshold and the actual values from the previous day relevant to this alert.
6766
* **Edit** or **Delete** the alert rule.
6867
* **Disable** or **Enable** the alert, if you want to temporarily stop or resume receiving notifications.
6968

70-
7169
## Next steps
72-
- Learn more about [setting alert on metrics](../../azure-monitor/alerts/alerts-metric.md).
73-
- Learn more about available [metrics in Azure Database for MySQL Flexible Server](./concepts-monitoring.md).
74-
- [Understand how metric alerts work in Azure Monitor](../../azure-monitor/alerts/alerts-metric-overview.md)
70+
71+
* Learn more about [setting alert on metrics](../../azure-monitor/alerts/alerts-metric.md).
72+
* Learn more about available [metrics in Azure Database for MySQL Flexible Server](./concepts-monitoring.md).
73+
* [Understand how metric alerts work in Azure Monitor](../../azure-monitor/alerts/alerts-metric-overview.md).

0 commit comments

Comments
 (0)