Skip to content

Commit 59de33a

Browse files
authored
Merge branch 'MicrosoftDocs:main' into 250325-update-tls-support
2 parents a98d7ef + 06bac71 commit 59de33a

File tree

235 files changed

+4173
-3816
lines changed

Some content is hidden

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

235 files changed

+4173
-3816
lines changed

.github/workflows/signoff-review.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ jobs:
565565
Write-Host "User $PullRequestOpener permission level: $UserPermission."
566566

567567
# If user has write or above, allow check to pass. If not, provide a welcome message
568-
If (($UserPermission -like "write*") -or ($UserPermission -eq "maintain") -or ($UserPermission -eq "admin"))
568+
If (($UserPermission -like "write*") -or ($UserPermission -eq "maintain") -or ($UserPermission -eq "admin") -or ($UserPermission -eq "triage"))
569569
{
570570
Write-Host "Approving as pull request creator $PullRequestOpener has permission."
571571

@@ -679,7 +679,7 @@ jobs:
679679
Write-Host "User $CommentUser permission level: $UserPermission."
680680

681681
# If user has write or above, allow check to pass. If not, add content team review label.
682-
If (($UserPermission -like "write*") -or ($UserPermission -eq "maintain") -or ($UserPermission -eq "admin"))
682+
If (($UserPermission -like "write*") -or ($UserPermission -eq "maintain") -or ($UserPermission -eq "admin") -or ($UserPermission -eq "triage"))
683683
{
684684
Write-Host "User $CommentUser has the permission level: $UserPermission. Pass check."
685685

.openpublishing.redirection.azure-sql.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,11 @@
105105
"redirect_url": "/azure/azure-sql/database/high-availability-sla-local-zone-redundancy",
106106
"redirect_document_id": true
107107
},
108+
{
109+
"source_path_from_root": "/azure-sql/database/saas-dbpertenant-log-analytics.md",
110+
"redirect_url": "/azure/azure-sql/database/monitoring-sql-database-azure-monitor",
111+
"redirect_document_id": true
112+
},
108113
{
109114
"source_path_from_root": "/azure-sql/managed-instance/high-availability-sla.md",
110115
"redirect_url": "/azure/azure-sql/managed-instance/high-availability-sla-local-zone-redundancy",

.openpublishing.redirection.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53448,7 +53448,12 @@
5344853448
},
5344953449
{
5345053450
"source_path": "docs/connect/odbc/linux/connecting-with-sqlcmd.md",
53451-
"redirect_url": "/sql/connect/odbc/linux-mac/connecting-with-sqlcmd",
53451+
"redirect_url": "/sql/tools/sqlcmd/sqlcmd-utility",
53452+
"redirect_document_id": false
53453+
},
53454+
{
53455+
"source_path": "docs/connect/odbc/linux-mac/connecting-with-sqlcmd.md",
53456+
"redirect_url": "/sql/tools/sqlcmd/sqlcmd-utility",
5345253457
"redirect_document_id": false
5345353458
},
5345453459
{

.openpublishing.redirection.ssms.json

Lines changed: 320 additions & 320 deletions
Large diffs are not rendered by default.

azure-sql/database-watcher-alerts.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ titleSuffix: Azure SQL Database & SQL Managed Instance
44
description: A detailed description of Azure Monitor Alerts in database watcher
55
author: lcwright
66
ms.author: lancewright
7+
ms.reviewer: dfurman
78
ms.date: 02/12/2025
89
ms.service: azure-sql
910
ms.subservice: monitoring
@@ -80,6 +81,7 @@ The following tables describe currently available alert rule templates for each
8081
| Workload patterns | Blocked requests | 1 - Error | 5 minutes | Alerts if there is a minimum number of blocked requests in a database that have been waiting longer than a certain duration. |
8182
| Workload patterns | Deadlock spike | 3 - Informational | 5 minutes | Alerts if the number of deadlocks in a database exceeds a threshold. |
8283
| Workload patterns | Lock wait spike | 2 - Warning | 5 minutes | Alerts if the cumulative wait time for locks in a database exceeds a threshold. |
84+
| Workload patterns | Long active transactions | 3 - Informational | 5 minutes | Alerts if there active transactions where transaction duration exceeds a threshold. |
8385
| Workload patterns | Memory wait spike | 3 - Informational | 5 minutes | Alerts if the cumulative wait time for memory in a database exceeds a threshold. |
8486
| Workload patterns | Network IO wait spike | 3 - Informational | 5 minutes | Alerts if the cumulative wait time for network IO in a database exceeds a threshold. |
8587
| Workload patterns | Request rate drop | 3 - Informational | 5 minutes | Alerts if the request rate in a database dropped significantly. |
@@ -120,6 +122,7 @@ The following tables describe currently available alert rule templates for each
120122
| Workload patterns | Blocked requests | 1 - Error | 5 minutes | Alerts if there is a minimum number of blocked requests on an instance that have been waiting longer than a certain duration. |
121123
| Workload patterns | Deadlock spike | 3 - Informational | 5 minutes | Alerts if the number of deadlocks on an instance exceeds a threshold. |
122124
| Workload patterns | Lock wait spike | 2 - Warning | 5 minutes | Alerts if the cumulative wait time for locks on an instance exceeds a threshold. |
125+
| Workload patterns | Long active transactions | 3 - Informational | 5 minutes | Alerts if there active transactions where transaction duration exceeds a threshold. |
123126
| Workload patterns | Memory wait spike | 3 - Informational | 5 minutes | Alerts if the cumulative wait time for memory on an instance exceeds a threshold. |
124127
| Workload patterns | Network IO wait spike | 3 - Informational | 5 minutes | Alerts if the cumulative wait time for network IO on an instance exceeds a threshold. |
125128
| Workload patterns | Request rate drop | 3 - Informational | 5 minutes | Alerts if the request rate on an instance dropped significantly. |

azure-sql/database-watcher-analyze.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ titleSuffix: Azure SQL Database & SQL Managed Instance
44
description: Examples of analytical queries that use database watcher monitoring data
55
author: lcwright
66
ms.author: lancewright
7+
ms.reviewer: dfurman
78
ms.date: 02/07/2025
89
ms.service: azure-sql
910
ms.subservice: monitoring

azure-sql/database-watcher-data.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ titleSuffix: Azure SQL Database & SQL Managed Instance
44
description: A detailed description of SQL monitoring data collected by database watcher
55
author: lcwright
66
ms.author: lancewright
7+
ms.reviewer: dfurman
78
ms.date: 12/20/2024
89
ms.service: azure-sql
910
ms.subservice: monitoring

azure-sql/database-watcher-faq.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
author: lcwright
77
ms.author: lancewright
88
ms.date: 02/07/2025
9-
ms.reviewer: wiassaf
9+
ms.reviewer: wiassaf, dfurman
1010
ms.service: azure-sql
1111
ms.subservice: monitoring
1212
ms.topic: faq

azure-sql/database-watcher-manage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ titleSuffix: Azure SQL Database & SQL Managed Instance
44
description: Setup and configuration details for database watcher
55
author: lcwright
66
ms.author: lancewright
7-
ms.reviewer: wiassaf
7+
ms.reviewer: wiassaf, dfurman
88
ms.date: 02/07/2025
99
ms.service: azure-sql
1010
ms.subservice: monitoring

azure-sql/database-watcher-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ titleSuffix: Azure SQL Database & SQL Managed Instance
44
description: An overview of database watcher for Azure SQL, a managed monitoring solution for database services in the Azure SQL family.
55
author: lcwright
66
ms.author: lancewright
7-
ms.reviewer: wiassaf
7+
ms.reviewer: wiassaf, dfurman
88
ms.date: 03/13/2025
99
ms.service: azure-sql
1010
ms.subservice: monitoring

0 commit comments

Comments
 (0)