v1

latestOpenAPI 3.0.02026-08-064311,0881.3 MB
traces

Get a trace search query status.

Get a status of a trace query with the given id. When the query has been completed, use the Trace Query Result endpoint to get the result of the asynchronous query.

get/v1/tracing/tracequery/{queryId}/status

Path parameters

queryIdstring required
Example:195038749d21ad109242c95cbbc8709d

Identifier of the executed query.

Response

Status of the given trace search query.

statusstring required

Status of the query. Possible values: Processing, Finished, Error, Canceled.

Example response

{
  "queryRows": [
    {
      "rowId": "A",
      "status": "Processing",
      "statusMessage": "Finished successfully",
      "count": 3215
    }
  ],
  "status": "Processing"
}