Available now
Resque Error Tracking
Self-hosted error monitoring for your Resque applications
Installation
Add the Checkend gem to your project and install it.
Installation
# Add to your Gemfile
gem 'checkend'
# Install the gem
bundle install Configuration
Configure Checkend with your API key and self-hosted endpoint.
Configuration
# config/initializers/checkend.rb
Checkend.configure do |config|
config.api_key = ENV['CHECKEND_API_KEY']
config.endpoint = ENV['CHECKEND_ENDPOINT']
end
# Add Checkend failure backend
require 'checkend/integrations/resque'
Resque::Failure.backend = Resque::Failure::Checkend Resque integration features
- Resque failure backend integration
- Job class and arguments context
- Queue and worker metadata
- Failed job details captured
- Works alongside other failure backends
Frequently asked questions
How do I get my API key?
After deploying Checkend, create a project in the dashboard. Your API key will be displayed on the project settings page.
What endpoint should I use?
Use your self-hosted Checkend URL followed by /api/v1/notices.
For example: https://errors.yourcompany.com/api/v1/notices
Can I filter which errors are reported?
Yes, the Checkend SDK supports filtering. You can configure ignored exceptions and customize which errors are captured using callbacks.
Ready to add error tracking to your Resque app?
Follow our quickstart guide to deploy Checkend and start capturing errors.