Skip to content

Commit f4b586d

Browse files
authored
Merge pull request #53933 from guregini/patch-5
Fix ResourceProvider to be with UpperCamelCase
2 parents 49407fa + b8a5f9d commit f4b586d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/cosmos-db/monitor-cosmos-db.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,15 +104,15 @@ Following are queries that you can use to help you monitor your Azure Cosmos dat
104104

105105
```Kusto
106106
AzureDiagnostics
107-
| where ResourceProvider=="MICROSOFT.DOCUMENTDB" and Category=="DataPlaneRequests"
107+
| where ResourceProvider=="Microsoft.DocumentDb" and Category=="DataPlaneRequests"
108108
109109
```
110110
111111
* To query for all operations, grouped by resource:
112112
113113
```Kusto
114114
AzureActivity
115-
| where ResourceProvider=="MICROSOFT.DOCUMENTDB" and Category=="DataPlaneRequests"
115+
| where ResourceProvider=="Microsoft.DocumentDb" and Category=="DataPlaneRequests"
116116
| summarize count() by Resource
117117
118118
```
@@ -121,7 +121,7 @@ Following are queries that you can use to help you monitor your Azure Cosmos dat
121121
122122
```Kusto
123123
AzureActivity
124-
| where Caller == "[email protected]" and ResourceProvider=="MICROSOFT.DOCUMENTDB" and Category=="DataPlaneRequests"
124+
| where Caller == "[email protected]" and ResourceProvider=="Microsoft.DocumentDb" and Category=="DataPlaneRequests"
125125
| summarize count() by Resource
126126
```
127127

0 commit comments

Comments
 (0)