search_issue_events
Search events for a specific Sentry issue using query filters to find relevant error occurrences and their details.
Instructions
Search events for a specific issue using a query string. Returns matching events with their details.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issue_id | Yes | Issue ID like 'PROJECT-123' or numeric ID | |
| limit | No | Maximum number of events to return (default: 10, max: 100) | |
| organization_slug | Yes | Organization slug | |
| query | No | Sentry search query. Syntax: key:value pairs with optional raw text. Operators: > < >= <= for numbers, ! for negation, * for wildcard, OR/AND for logic. Event properties: environment, release, platform, message, user.id, user.email, device.family, browser.name, os.name, server_name, transaction. Examples: 'server_name:web-1', 'environment:production', '!user.email:*@test.com', 'browser.name:Chrome OR browser.name:Firefox' | |
| sort | No | Sort order: 'newest' (default) or 'oldest' |