@@ -29,9 +29,6 @@ Common queries are shown in the resource-specific and Azure Diagnostics tables.
29
29
#### [ Resource-specific] ( #tab/resource-specific )
30
30
31
31
``` Kusto
32
- let topRequestsByRUcharge = CDBDataPlaneRequests
33
- | where TimeGenerated > ago(24h)
34
- | project RequestCharge , TimeGenerated, ActivityId;
35
32
CDBGremlinRequests
36
33
| project PIICommandText, ActivityId, DatabaseName , CollectionName
37
34
| join kind=inner topRequestsByRUcharge on ActivityId
@@ -43,9 +40,6 @@ Common queries are shown in the resource-specific and Azure Diagnostics tables.
43
40
#### [ Azure Diagnostics] ( #tab/azure-diagnostics )
44
41
45
42
``` Kusto
46
- let topRequestsByRUcharge = AzureDiagnostics
47
- | where Category == "DataPlaneRequests" and TimeGenerated > ago(1h)
48
- | project requestCharge_s , TimeGenerated, activityId_g;
49
43
AzureDiagnostics
50
44
| where Category == "GremlinRequests"
51
45
| project piiCommandText_s, activityId_g, databasename_s , collectionname_s
@@ -62,9 +56,6 @@ Common queries are shown in the resource-specific and Azure Diagnostics tables.
62
56
#### [ Resource-specific] ( #tab/resource-specific )
63
57
64
58
``` Kusto
65
- let throttledRequests = CDBDataPlaneRequests
66
- | where StatusCode == "429"
67
- | project OperationName , TimeGenerated, ActivityId;
68
59
CDBGremlinRequests
69
60
| project PIICommandText, ActivityId, DatabaseName , CollectionName
70
61
| join kind=inner throttledRequests on ActivityId
@@ -74,10 +65,6 @@ Common queries are shown in the resource-specific and Azure Diagnostics tables.
74
65
#### [ Azure Diagnostics] ( #tab/azure-diagnostics )
75
66
76
67
``` Kusto
77
- let throttledRequests = AzureDiagnostics
78
- | where Category == "DataPlaneRequests"
79
- | where statusCode_s == "429"
80
- | project OperationName , TimeGenerated, activityId_g;
81
68
AzureDiagnostics
82
69
| where Category == "GremlinRequests"
83
70
| project piiCommandText_s, activityId_g, databasename_s , collectionname_s
@@ -92,8 +79,6 @@ Common queries are shown in the resource-specific and Azure Diagnostics tables.
92
79
#### [ Resource-specific] ( #tab/resource-specific )
93
80
94
81
``` Kusto
95
- let operationsbyUserAgent = CDBDataPlaneRequests
96
- | project OperationName, DurationMs, RequestCharge, ResponseLength, ActivityId;
97
82
CDBGremlinRequests
98
83
//specify collection and database
99
84
//| where DatabaseName == "DB NAME" and CollectionName == "COLLECTIONNAME"
@@ -105,9 +90,6 @@ Common queries are shown in the resource-specific and Azure Diagnostics tables.
105
90
#### [ Azure Diagnostics] ( #tab/azure-diagnostics )
106
91
107
92
``` Kusto
108
- let operationsbyUserAgent = AzureDiagnostics
109
- | where Category=="DataPlaneRequests"
110
- | project OperationName, duration_s, requestCharge_s, responseLength_s, activityId_g;
111
93
AzureDiagnostics
112
94
| where Category == "GremlinRequests"
113
95
//| where databasename_s == "DB NAME" and collectioname_s == "COLLECTIONNAME"
0 commit comments