Skip to content

Commit f6df748

Browse files
authored
Fix ResourceProvider to be with UpperCamelCase
In AzureActivity table: The ResourceProvider of CosmosDB is Microsoft.DocumentDb (UpperCamelCase), and not MICROSOFT.DOCUMENTDB (as it is in AzureDiagnostics table)
1 parent 787c38c commit f6df748

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Following are queries that you can use to help you monitor your Azure Cosmos dat
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)