get_app_endpoint_traces
Retrieve recent traces for a specific application endpoint to analyze performance issues and identify optimization opportunities within a defined time range.
Instructions
Get recent traces for an app filtered to a specific endpoint.
Args:
app_id (int): The ID of the Scout APM application.
endpoint_id (str): The ID of the endpoint to filter traces.
from_ (str): The start datetime in ISO 8601 format.
to (str): The end datetime in ISO 8601 format.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app_id | Yes | ||
endpoint_id | Yes | ||
from_ | Yes | ||
to | Yes |
Input Schema (JSON Schema)
{
"properties": {
"app_id": {
"title": "App Id",
"type": "integer"
},
"endpoint_id": {
"title": "Endpoint Id",
"type": "string"
},
"from_": {
"title": "From",
"type": "string"
},
"to": {
"title": "To",
"type": "string"
}
},
"required": [
"app_id",
"from_",
"to",
"endpoint_id"
],
"type": "object"
}