File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -104,15 +104,15 @@ Following are queries that you can use to help you monitor your Azure Cosmos dat
104
104
105
105
``` Kusto
106
106
AzureDiagnostics
107
- | where ResourceProvider=="MICROSOFT.DOCUMENTDB " and Category=="DataPlaneRequests"
107
+ | where ResourceProvider=="Microsoft.DocumentDb " and Category=="DataPlaneRequests"
108
108
109
109
```
110
110
111
111
* To query for all operations, grouped by resource:
112
112
113
113
```Kusto
114
114
AzureActivity
115
- | where ResourceProvider=="MICROSOFT.DOCUMENTDB " and Category=="DataPlaneRequests"
115
+ | where ResourceProvider=="Microsoft.DocumentDb " and Category=="DataPlaneRequests"
116
116
| summarize count() by Resource
117
117
118
118
```
@@ -121,7 +121,7 @@ Following are queries that you can use to help you monitor your Azure Cosmos dat
121
121
122
122
```Kusto
123
123
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"
125
125
| summarize count() by Resource
126
126
```
127
127
You can’t perform that action at this time.
0 commit comments