v1

latestOpenAPI 3.0.02026-08-064311,0881.3 MB
spanAnalytics

Get a span analytics query status.

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

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

Path parameters

queryIdstring required
Example:195038749d21ad109242c95cbbc8709d

Identifier of the executed query.

Response

Details about the given span query.

statusstring required

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

Example response

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