Skip to content
mperham edited this page Mar 19, 2012 · 27 revisions

Sidekiq comes with a Sinatra application that can display the current state of a Sidekiq installation.

Rails 3

Add slim and sinatra (and sprockets if you are on Rails 3.0) to your Gemfile

Add the following to your config/routes.rb:

  require 'sidekiq/web'
  mount Sidekiq::Web => '/sidekiq'

Standalone

Here's an example config.ru for booting Sidekiq::Web in your choice of Rack server:

require 'sidekiq'

Sidekiq.configure_client do |config|
  config.redis = { :size => 1 }
end

require 'sidekiq/web'
run Sidekiq::Web

If you do everything right, you should see this in your browser:

Web UI

Clone this wiki locally