Traces
SDK methods for the Traces module, accessed via soat.traces. See the Traces module docs for permissions and data model, and each method's REST page for the full request/response schema.
soat.traces.listTraces()
List traces
- Method:
GET - Path:
/api/v1/traces
await soat.traces.listTraces({
query: { /* + optional */ },
});
soat.traces.getTrace()
Get a trace
- Method:
GET - Path:
/api/v1/traces/{trace_id}
await soat.traces.getTrace({
path: { trace_id },
});
soat.traces.getTraceTree()
Get trace tree
- Method:
GET - Path:
/api/v1/traces/{trace_id}/tree
await soat.traces.getTraceTree({
path: { trace_id },
query: { /* + optional */ },
});