GET/api/admin/server-traces/operationsAdmin

List 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_operationsAdministration

Authentication & permissionsAdmin

Platform administrators only

Accepted credentials
Who may call
Platform administrators only

Query parameters

NameTypeDescription
sincestring

Only traces that started at or after this instant (a non-negative integer Unix epoch in milliseconds).

Responses

application/json
PropertyTypeDescription
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>'