VSCode extension to browse Sentry issues and navigate stack traces directly in VSCode.
- Browse Sentry projects and issues from VSCode
- Launch the debugger to navigate stack traces and see variables
This extension requires a Sentry account. You can sign up for free and then follow the quickstart guide to set up a project and integrate it into your software.
For now:
npm install -g vsce
vsce package
code --install-extension *.vsix
Install sentry-cli and set it up. The VSCode extension will pick up the authentication information from sentry-cli
.
Run the command Sentry: Search Issues from the command palette (CMD + Shift + P
or
Ctrl + Shift + P
) and enter a search term. You can also use all search filters that work on the
Sentry issues page. Then, select an issue from the list.
To start a debugging session, choose Launch debugger on Issue from the actions panel. Please note that your workspace needs to contain the project sources or search paths have to be configured. See Extension Settings for more information on configuration.
This extension contributes the following settings:
sentry.enabled
: Enable or disable this extensionsentry.serverUrl
: Use a custom on-premise serversentry.projects
: Select projects for searching issuessentry.searchPaths
: Local paths to search for source files
Please feel free to open issues or PRs. To build and run this configuration, open this repository in VSCode and run the Extension target. To run tests, run the Extension Tests target.