Create an account
Sign up at sentry.io. You can also use GitHub or Google to authenticate.If you prefer to run Sentry on your own infrastructure, see Self-hosted Sentry instead.
Create an organization and project
After signing in, Sentry prompts you to create an organization. Organizations are the top-level container for all your teams, projects, and data.Once inside, go to Projects and click Create Project. Select your platform, name the project, and click Create Project. Sentry generates a DSN (Data Source Name) for the project — you’ll use this in the next step.
The DSN looks like:
https://<public_key>@o<org_id>.ingest.sentry.io/<project_id>You can always find it again at Project Settings → Client Keys (DSN).Install the SDK
Install the Sentry SDK for your language or framework.
- Python / Django
- JavaScript / Node.js
Configure the SDK
Initialize Sentry as early as possible in your application, before any other imports that might throw errors.Replace the
- Python (plain)
- Django
- Node.js
dsn value with the one from your project settings.Trigger a test error
Verify the integration is working by throwing a deliberate error.Or from a Django view:
- Python
- Node.js
What’s next
Projects
Learn how projects organize your data and where to find the DSN.
Environments
Filter issues and alerts by production, staging, or any custom environment.
Releases
Track deploys, suspect commits, and release health.
Organizations
Manage teams, members, and organization-wide settings.