sentry_list_issue_events
Retrieve and analyze events linked to a specific Sentry issue to examine details, metadata, and patterns for troubleshooting and performance insights.
Instructions
List events for a specific Sentry issue. Analyze event details, metadata and patterns.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issueId | Yes | Issue ID | |
limit | No | Number of events to return |
Input Schema (JSON Schema)
{
"properties": {
"issueId": {
"description": "Issue ID",
"type": "string"
},
"limit": {
"default": 50,
"description": "Number of events to return",
"type": "number"
}
},
"required": [
"issueId"
],
"type": "object"
}