Skip to content

Commit 2b6868e

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into feedbackSAN
2 parents 7ebf7d5 + 63e5a04 commit 2b6868e

File tree

6 files changed

+20
-12
lines changed

6 files changed

+20
-12
lines changed

articles/azure-monitor/alerts/action-groups-create-resource-manager-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Create action groups with Resource Manager templates
33
description: Learn how to create an action group by using an Azure Resource Manager template.
4-
author: dkamstra
4+
author: jacegummersall
55
services: azure-monitor
66

77
ms.topic: conceptual

articles/azure-monitor/alerts/action-groups.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Manage action groups in the Azure portal
33
description: Find out how to create and manage action groups. Learn about notifications and actions that action groups enable, such as email, webhooks, and Azure Functions.
4-
author: dkamstra
4+
author: jacegummersall
55
ms.topic: conceptual
66
ms.date: 09/07/2022
77
ms.author: jagummersall

articles/azure-monitor/alerts/alerts-common-schema-test-action-definitions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
title: Alert schema definitions in Azure Monitor for Test Action Group
33
description: Understanding the common alert schema definitions for Azure Monitor for Test Action group
4-
author: issahn
4+
author: jacegummersall
55
ms.topic: conceptual
66
ms.date: 01/14/2022
7-
ms.revewer: issahn
7+
ms.revewer: jagummersall
88
---
99

1010
# Common alert schema definitions for Test Action Group (Preview)

articles/azure-monitor/alerts/alerts-rate-limiting.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
title: Rate limiting for SMS, emails, push notifications
33
description: Understand how Azure limits the number of possible SMS, email, Azure App push or webhook notifications from an action group.
4-
author: dkamstra
5-
ms.author: dukek
4+
author: jacegummersall
5+
ms.author: jagummersall
66
ms.topic: conceptual
77
ms.date: 2/23/2022
8-
ms.reviewer: dukek
8+
ms.reviewer: jagummersall
99
---
1010

1111
# Rate limiting for Voice, SMS, emails, Azure App push notifications and webhook posts

articles/azure-monitor/alerts/alerts-sms-behavior.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
title: SMS Alert behavior in Action Groups
33
description: SMS message format and responding to SMS messages to unsubscribe, resubscribe or request help.
4-
author: dkamstra
5-
ms.author: dukek
4+
author: jacegummersall
5+
ms.author: jagummersall
66
services: monitoring
77
ms.topic: conceptual
88
ms.date: 2/23/2022
9-
ms.reviewer: dukek
9+
ms.reviewer: jagummersall
1010
---
1111

1212
# SMS Alert Behavior in Action Groups

articles/cosmos-db/mongodb/find-request-unit-charge.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The cost of all database operations is normalized by Azure Cosmos DB and is expr
2020

2121
This article presents the different ways you can find the [request unit](../request-units.md) (RU) consumption for any operation executed against a container in Azure Cosmos DB for MongoDB. If you're using a different API, see [API for NoSQL](../find-request-unit-charge.md), [API for Cassandra](../cassandra/find-request-unit-charge.md), [API for Gremlin](../gremlin/find-request-unit-charge.md), and [API for Table](../table/find-request-unit-charge.md) articles to find the RU/s charge.
2222

23-
The RU charge is exposed by a custom [database command](https://docs.mongodb.com/manual/reference/command/) named `getLastRequestStatistics`. The command returns a document that contains the name of the last operation executed, its request charge, and its duration. If you use the Azure Cosmos DB for MongoDB, you have multiple options for retrieving the RU charge.
23+
The RU charge is exposed by a custom database command named `getLastRequestStatistics`. The command returns a document that contains the name of the last operation executed, its request charge, and its duration. If you use the Azure Cosmos DB for MongoDB, you have multiple options for retrieving the RU charge.
2424

2525
## Use the Azure portal
2626

@@ -42,7 +42,15 @@ The RU charge is exposed by a custom [database command](https://docs.mongodb.com
4242

4343
`db.runCommand({getLastRequestStatistics: 1})`
4444

45-
## Use a MongoDB driver
45+
## Programmatically
46+
47+
### [Mongo Shell](#tab/mongo-shell)
48+
49+
When you use the Mongo shell, you can execute commands by using runCommand().
50+
51+
```javascript
52+
db.runCommand('getLastRequestStatistics')
53+
```
4654

4755
### [.NET driver](#tab/dotnet-driver)
4856

0 commit comments

Comments
 (0)