Tutorial: Debug your APIs using request tracing
APPLIES TO: All API Management tiers
This tutorial describes how to inspect (trace) request processing in Azure API Management. Tracing helps you debug and troubleshoot your API.
In this tutorial, you learn how to:
- Trace an example call in the test console
- Review request processing steps
- Enable tracing for an API
Prerequisites
- Learn the Azure API Management terminology.
- Complete the following quickstart: Create an Azure API Management instance.
- Complete the following tutorial: Import and publish your first API.
Important
- API Management no longer supports subscriptions for tracing or the Ocp-Apim-Trace header.
- To improve API security, tracing can now be enabled at the level of an individual API by obtaining a time-limited token using the API Management REST API, and passing the token in a request to the gateway. For details, see Enable tracing of an API.
- Take care when enabling tracing, as it can expose sensitive information in the trace data. Ensure that you have appropriate security measures in place to protect the trace data.
Trace a call in the portal
Follow these steps to trace an API request in the test console in the portal. This example assumes that you imported a sample API in a previous tutorial. You can follow similar steps with a different API that you imported.
Sign in to the Azure portal, and navigate to your API Management instance.
Select APIs > APIs.
Select Petstore API from your API list.
Select the Test tab.
Select the Find pet by ID operation.
In the petId Query parameter, enter 1.
Optionally check the value for the Ocp-Apim-Subscription-Key header used in the request by selecting the "eye" icon.
Tip
You can override the value of Ocp-Apim-Subscription-Key by retrieving a key for another subscription in the portal. Select Subscriptions, and open the context menu (...) for another subscription. Select Show/hide keys and copy one of the keys. You can also regenerate keys if needed. Then, in the test console, select + Add header to add an Ocp-Apim-Subscription-Key header with the new key value.
Select Trace.
Review trace information
After the call completes, go to the Trace tab in the HTTP response.
Select any of the following links to jump to detailed trace info: Inbound, Backend, Outbound, On error.
Inbound - Shows the original request API Management received from the caller and the policies applied to the request. For example, if you added policies in Tutorial: Transform and protect your API, they appear here.
Backend - Shows the requests API Management sent to the API backend and the response it received.
Outbound - Shows the policies applied to the response before sending back to the caller.
On error - Shows the errors that occurred during the processing of the request and the policies applied to the errors.
Tip
Each step also shows the elapsed time since the request is received by API Management.
Enable tracing for an API
The following high level steps are required to enable tracing for a request to API Management when using curl
, a REST client such as Visual Studio Code with the REST Client extension, or a client app. Currently these steps must be followed using the API Management REST API:
- Obtain a token credential for tracing.
- Add the token value in an
Apim-Debug-Authorization
request header to the API Management gateway. - Obtain a trace ID in the
Apim-Trace-Id
response header. - Retrieve the trace corresponding to the trace ID.
Detailed steps follow.
Note
- These steps require API Management REST API version 2023-05-01-preview or later. You must be assigned the Contributor or higher role on the API Management instance to call the REST API.
- For information about authenticating to the REST API, see Azure REST API reference.
Obtain a token credential - Call the API Management gateway's List debug credentials API. In the URI, enter "managed" for the instance's managed gateway in the cloud, or the gateway ID for a self-hosted gateway. For example, to obtain trace credentials for the instance's managed gateway, use a request similar to the following:
POST https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/gateways/managed/listDebugCredentials?api-version=2023-05-01-preview
In the request body, pass the full resource ID of the API that you want to trace, and specify
purposes
astracing
. By default the token credential returned in the response expires after 1 hour, but you can specify a different value in the payload. For example:{ "credentialsExpireAfter": PT1H, "apiId": ""/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiName}", "purposes": ["tracing"] }
The token credential is returned in the response, similar to the following:
{ "token": "aid=api-name&......." }
Add the token value in a request header - To enable tracing for a request to the API Management gateway, send the token value in an
Apim-Debug-Authorization
header. For example, to trace a call to the Petstore API that you imported in a previous tutorial, you might use a request similar to the following:curl -v https://apim-hello-world.azure-api.net/pet/1 HTTP/1.1 -H "Ocp-Apim-Subscription-Key: <subscription-key>" -H "Apim-Debug-Authorization: aid=api-name&......."
Depending on the token, the response contains one of the following headers:
If the token is valid, the response includes an
Apim-Trace-Id
header whose value is the trace ID, similar to the following:Apim-Trace-Id: 0123456789abcdef....
If the token is expired, the response includes an
Apim-Debug-Authorization-Expired
header with information about expiration date.If the token was obtained for a different API, the response includes an
Apim-Debug-Authorization-WrongAPI
header with an error message.
Retrieve the trace - Pass the trace ID obtained in the previous step to the gateway's List trace API. For example, to retrieve the trace for the managed gateway, use a request similar to the following:
POST https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/gateways/managed/listTrace?api-version=2023-05-01-preview
In the request body, pass the trace ID obtained in the previous step.
{ "traceId": "0123456789abcdef...." }
The response body contains the trace data for the previous API request to the gateway. The trace is similar to the trace you can see by tracing a call in the portal's test console.
For information about customizing trace information, see the trace policy.
Next steps
In this tutorial, you learned how to:
- Trace an example call in the test conosle
- Review request processing steps
- Enable tracing for an API
Advance to the next tutorial: