Search & filtering

Once you've got more than a handful of issues, the search bar and filters above the issue list help you find the one you care about. Everything runs server-side, so search reaches your whole history — not just the first page.

The search box matches, case-insensitively, across an issue's title, culprit, and exception type and value. Search TypeError to find every type error, or paste a filename or function name from a stack trace to jump to the issue it belongs to.

Filters

Filters combine with each other and with the search text (all AND-ed together):

FilterValues
EnvironmentDrawn from the environments actually present in the project's issues.
ReleaseAny release the project has seen — shows issues that appeared in it.
Levelerror, warning, or info.
Statusunresolved, resolved, ignored, or silenced (by effective status — an expired silence counts as unresolved).

Sort & paging

Sort the list by:

Results page through your full history, so a search isn't capped to the most recent issues.

Shareable URLs

Active search and filters are written to the page URL, so a filtered view is shareable and bookmarkable — drop a link to "unresolved TypeErrors in production on v2.1" into a chat and it opens exactly that.

API. The same query is available programmatically: GET /api/projects/:id/issues?q=&environment=&release=&level=&status=&sort=&cursor=. All parameters are optional and the endpoint is scoped to your own projects.