/api/auth/login
curl -L \ --request POST \ --url '/api/auth/login' \ --header 'Authorization: Bearer JWT' \ --header 'Content-Type: application/json' \ --data '{ "username": "text", "password": "super-secret" }'
text
/api/apps
curl -L \ --url '/api/apps' \ --header 'Authorization: Bearer JWT'
[ "text" ]
/api/data/symbols/{kind}
Symbol kind. It must be one of: cls, mth, thr or key.
cls
mth
thr
key
curl -L \ --request POST \ --url '/api/data/symbols/{kind}' \ --header 'Authorization: Bearer JWT' \ --header 'Content-Type: application/json' \ --data '{ "pattern": "text" }'
/api/data/calls
The beginning of the time range
The end of the time range
Application name
Thread name
Previous query id
curl -L \ --request POST \ --url '/api/data/calls' \ --header 'Authorization: Bearer JWT' \ --header 'Content-Type: application/json' \ --data '{ "from": "2025-03-12T04:31:43.222Z", "thru": "2025-03-12T04:31:43.222Z", "application": "text", "thread": "text", "arguments": { "value": "text", "kind": "text" }, "query_id": "text" }'
[ { "cid": "text", "app": "text", "clazz": "text", "method": "text", "thread": "text", "duration": { "secs": 1, "nanos": 1 }, "cpu_time": { "secs": 1, "nanos": 1 }, "tstamp": "2025-03-12T04:31:43.222Z", "count": 1, "exc_class": "text", "exc_trace": "text", "parameters": [ { "key": "text", "value": "text" } ] } ]