@@ -11,15 +11,15 @@ Monitor Query client library for Java.
11
11
* [ Troubleshooting authentication issues with logs and metrics query requests] ( #authentication-errors )
12
12
* [ Troubleshooting NoSuchMethodError or NoClassDefFoundError] ( #dependency-conflicts )
13
13
* [ Troubleshooting Logs Query] ( #troubleshooting-logs-query )
14
- * [ Troubleshooting insufficient access error ] ( #troubleshooting-insufficient-access-error -for-logs-query )
14
+ * [ Troubleshooting authorization errors ] ( #troubleshooting-authorization-errors -for-logs-query )
15
15
* [ Troubleshooting invalid Kusto query] ( #troubleshooting-invalid-kusto-query )
16
16
* [ Troubleshooting empty log query results] ( #troubleshooting-empty-log-query-results )
17
17
* [ Troubleshooting client timeouts when executing logs query request] ( #troubleshooting-client-timeouts-when-executing-logs-query-request )
18
18
* [ Troubleshooting server timeouts when executing logs query request] ( #troubleshooting-server-timeouts-when-executing-logs-query-request )
19
19
* [ Troubleshooting server timeouts on OkHTTP client] ( #troubleshooting-server-timeouts-on-okhttp-client )
20
20
* [ Troubleshooting partially successful logs query requests] ( #troubleshooting-partially-successful-logs-query-requests )
21
21
* [ Troubleshooting Metrics Query] ( #troubleshooting-metrics-query )
22
- * [ Troubleshooting insufficient access error ] ( #troubleshooting-insufficient-access-error -for-metrics-query )
22
+ * [ Troubleshooting authorization errors ] ( #troubleshooting-authorization-errors -for-metrics-query )
23
23
* [ Troubleshooting unsupported granularity for metrics query] ( #troubleshooting-unsupported-granularity-for-metrics-query )
24
24
25
25
## General Troubleshooting
@@ -94,7 +94,7 @@ why this happens and [ways to mitigate this issue](https://docs.microsoft.com/az
94
94
95
95
## Troubleshooting Logs Query
96
96
97
- ### Troubleshooting insufficient access error for logs query
97
+ ### Troubleshooting authorization errors for logs query
98
98
99
99
If you get an HTTP error with status code 403 (Forbidden), it means that the provided credentials does not have
100
100
sufficient permissions to query the workspace.
@@ -111,6 +111,9 @@ com.azure.core.exception.HttpResponseException: Status code 403, "{"error":{"mes
111
111
then check the logs to verify that the credential used is the one you expected. To enable logging, see [ enable
112
112
client logging] ( #enable-client-logging ) section above.
113
113
114
+ For more help on troubleshooting authentication errors, please see the Azure Identity client library [ troubleshooting
115
+ guide] ( https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/identity/azure-identity/TROUBLESHOOTING.md ) .
116
+
114
117
### Troubleshooting invalid Kusto query
115
118
116
119
If you get an HTTP error with status code 400 (Bad Request), you may have an error in your Kusto query and you'll
@@ -200,7 +203,7 @@ client.queryWorkspaceWithResponse("{workspaceId}", "{kusto-query-string}", Query
200
203
201
204
## Troubleshooting Metrics Query
202
205
203
- ### Troubleshooting insufficient access error for metrics query
206
+ ### Troubleshooting authorization errors for metrics query
204
207
205
208
If you get an HTTP error with status code 403 (Forbidden), it means that the provided credentials does not have
206
209
sufficient permissions to query the workspace.
@@ -217,6 +220,9 @@ com.azure.core.exception.HttpResponseException: Status code 403, "{"error":{"cod
217
220
then check the logs to verify that the credential used is the one you expected. To enable logging, see [ enable
218
221
client logging] ( #enable-client-logging ) section above.
219
222
223
+ For more help on troubleshooting authentication errors, please see the Azure Identity client library [ troubleshooting
224
+ guide] ( https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/identity/azure-identity/TROUBLESHOOTING.md ) .
225
+
220
226
### Troubleshooting unsupported granularity for metrics query
221
227
222
228
If you notice the following exception, this is due to an invalid time granularity in the metrics query request. Your
0 commit comments