get_app_error_groups
Retrieve recent application error groups from Scout Monitoring to identify and analyze performance issues, with optional filtering by specific endpoints or error groups.
Instructions
Get recent error_groups for an app, optionally filtered to a specific endpoint or
group.
Args:
app_id (int): The ID of the Scout APM application.
endpoint_id (str | None): The ID of the endpoint to filter errors. If None,
fetches all errors for the app.
error_group_id (str | None): The ID of the error group to filter errors.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app_id | Yes | ||
endpoint_id | No | ||
error_group_id | No | ||
from_ | Yes | ||
to | Yes |
Input Schema (JSON Schema)
{
"properties": {
"app_id": {
"title": "App Id",
"type": "integer"
},
"endpoint_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Endpoint Id"
},
"error_group_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Error Group Id"
},
"from_": {
"title": "From",
"type": "string"
},
"to": {
"title": "To",
"type": "string"
}
},
"required": [
"app_id",
"from_",
"to"
],
"type": "object"
}