list_events
Retrieve error events from a Glitchtip project to monitor and debug application issues. Specify the project slug to view recent events with configurable limits.
Instructions
List events for a specific project (requires event:read scope)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of events to return (default: 25) | |
project_slug | Yes | The slug of the project |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum number of events to return (default: 25)",
"type": "number"
},
"project_slug": {
"description": "The slug of the project",
"type": "string"
}
},
"required": [
"project_slug"
],
"type": "object"
}