| name | sentry |
| id | sentry |
| description | Sentry error tracking integration for searching issues, fetching stacktraces, listing projects, and running Discover event searches during RCA investigations |
| category | observability |
| connection_check | {"method":"get_token_data","provider_key":"sentry","required_field":"auth_token"} |
| tools | ["query_sentry"] |
| index | Error tracking platform -- issue search, full stacktraces, breadcrumbs, project listings, Discover event queries |
| rca_priority | 3 |
| allowed-tools | query_sentry |
| metadata | {"author":"aurora","version":"1.0"} |
Sentry Integration
Overview
Sentry error tracking integration for querying issues, events, and project data during Root Cause Analysis. Sentry is a REMOTE service. Use ONLY the query_sentry API tool. All data is accessed via the Sentry web API with the resource_type parameter.
Instructions
Tool Usage
query_sentry(resource_type=TYPE, query=QUERY, stats_period=PERIOD, project=PROJECT, limit=N)
Resource Types
'issues' -- Search issues. query is a Sentry search expression (e.g. is:unresolved level:error)
'issue_detail' -- Get metadata for one issue. query is the numeric Sentry issue ID
'issue_event' -- Get the latest event for an issue with full stacktrace + breadcrumbs + tags. query is the issue ID
'projects' -- List projects in the connected Sentry org
'events' -- Discover-style event table search. query is a Sentry search expression
Sentry Search Syntax
key:value -- exact match (e.g. level:error, environment:production)
AND / OR -- combine clauses (e.g. level:error AND environment:production)
!key:value -- negation
key:[a,b] -- value in list
>, <, >=, <= -- comparison on numeric/date fields
* -- wildcard
- Common keys:
level, environment, release, project, is, assigned, bookmarks, has
stats_period
- Format:
Nm minutes, Nh hours, Nd days, Nw weeks (e.g. 24h, 7d, 30m)
- Defaults to if omitted