GET
/api/admin/server-traces/operationsAdminList traced operations
Returns every operation that recorded a server trace (optionally only since since) with its category and trace count, busiest first. Use the names to filter GET /api/admin/server-traces.
operationId
get_api_admin_server_traces_operationsAdministrationAuthentication & permissionsAdmin
Platform administrators only
- Accepted credentials
- Auth server session (refresh token cookie)
cookie "refresh_token_<auth_server_app_id>" - Access token (cookie)
cookie "access_token_<auth_server_app_id>" - Access token (Bearer)
Authorization: Bearer <JWT>
- Auth server session (refresh token cookie)
- Who may call
- Platform administrators only
Query parameters
| Name | Type | Description |
|---|---|---|
| since | string | Only traces that started at or after this instant (a non-negative integer Unix epoch in milliseconds). |
Responses
application/json
| Property | Type | Description |
|---|---|---|
| success* | true | |
| message* | string | |
| data* | object | |
| operations* | AdminServerTraceOperation[] | |
| op_name* | string | minLength: 1 |
| op_category* | "database_query" | "http_response" | "http_request" | "subroutine" | |
| count* | integer | Traces recorded for the operation in the window minimum: 0 |
| last_seen* | number | Start of the operation's most recent trace (Unix epoch milliseconds) minimum: 0 |
JSONExample
"success"true
"message""string"
"data"
"operations"
Example request
bashcurl
curl -X GET 'https://auth.schemavaults.com/api/admin/server-traces/operations' \
-b 'refresh_token_<auth_server_app_id>=<value>'