Skip to main content
POST
/
analytics
/
query
/
timing
Get analytics query timing
curl --request POST \
  --url https://api.hexclave.com/api/v1/analytics/query/timing \
  --header 'Content-Type: application/json' \
  --data '
{
  "query_id": "00000000-0000-0000-0000-000000000000:main:00000000-0000-0000-0000-000000000001"
}
'
{
  "stats": {
    "cpu_time": 12,
    "wall_clock_time": 18
  }
}

Body

application/json
query_id
string
required

The query_id returned from POST /analytics/query.

Example:

"00000000-0000-0000-0000-000000000000:main:00000000-0000-0000-0000-000000000001"

Response

200 - application/json

Successful response

stats
object
required