get_app_trace
Retrieve detailed application performance traces with all spans to analyze and debug performance issues like slow endpoints and N+1 queries.
Instructions
Get an individual trace with all spans.
Args:
app_id (int): The ID of the Scout APM application.
trace_id (int): The ID of the trace to retrieve.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app_id | Yes | ||
trace_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"app_id": {
"title": "App Id",
"type": "integer"
},
"trace_id": {
"title": "Trace Id",
"type": "integer"
}
},
"required": [
"app_id",
"trace_id"
],
"type": "object"
}