v1
latestOpenAPI 3.0.02026-08-064311,0881.3 MBtraces
Get results of a trace search query.
Get a list of traces matching a query with the specified id. The response is paginated with a default limit of 100 traces per page.
get/v1/tracing/tracequery/{queryId}/rows/{rowId}/traces
Path parameters
queryIdstring required
Example:195038749d21ad109242c95cbbc8709d
Identifier of the executed query.
rowIdstring required
Example:A
Identifier of the query row.
Query parameters
limitinteger
Example:100
Limit of the number of traces returned in the response.
tokenstring
Example:dlFXd0lhSkxzRjAwYnpVZkMrRmlhYnF4cGtNMWdnVEI
Continuation token to get the next page of results. A page object with the next continuation token is returned in the response body. Subsequent GET requests should specify the continuation token to get the next page of results. token is set to null when no more pages are left.
Response
Details about the given span query.
Example response
{
"results": [
{
"id": "00000000000120CB",
"rootService": "user-service",
"rootResource": "http.request",
"rootStatus": {
"code": "OK",
"message": "404"
},
"rootOperationName": "retrieveAccount",
"metrics": {
"_duration": 143984411
},
"startedAt": "2019-11-22T09:00:00Z",
"criticalPathServiceBreakdownSummary": {
"elements": [
{
"service": "user-service",
"serviceColor": "#fa41c6",
"duration": 12957153
}
],
"otherServicesDuration": 12957153,
"idleTime": 60000000
}
}
],
"next": "10001"
}