Track Rails errors with Sentry
Create Sentry project
Login to Sentry and go to Projects > Create project
and choose the Rails project type.
Install gems
Run:
Configure Sentry
Create a file config/initializers/sentry.rb
:
Restart Rails server.
Verify setup
Each Sentry project is identified by a client key / DSN. We’ve omitted this from config/initializers/sentry.rb
because we’ll provide it with the SENTRY_DSN
environment variable instead.
To get the client key / DSN, navigate to Projects > [Project]
, click the cog icon on the top right and then Client Keys (DSN)
.
Normally, you’d set this in production or staging environment only but let’s test the Sentry integration locally.
Open up the Rails console:
Run:
You should see something like:
This means Sentry was able to send the event to its servers. If you try this without setting the SENTRY_DSN
env variable, you’ll get nil
when you call Sentry.capture_message
. Go to your Sentry project’s issues page and you should see the error reported.
Other notes
Sentry automatically sets the current environment to RAILS_ENV
, or if it is not present, RACK_ENV
.
Sources
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment