Popularity
2.5
Stable
Activity
3.6
-
162
6
9

Description

A Sinatra web app showing monitoring informations about your Redis servers. You can run it in standalone or inside your Rails app.

Monthly Downloads: 10,930
Programming language: CSS
License: MIT License

Redis Dashboard alternatives and similar gems

Based on the "Database Tools" category.
Alternatively, view Redis Dashboard alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Redis Dashboard or a related project?

Add another 'Database Tools' Gem

README

Redis Dashboard

A Sinatra web app showing monitoring informations about your Redis servers. You can run it in standalone or inside your Rails app.

Redis dashboard

Features

List of your redis servers

  • Connections
  • Memory
  • Commands per second

Detailed views for each server

  • Redis INFO output
  • Redis CONFIG GET output
  • Redis CLIENT LIST output
  • Redis SLOWLOG GET output

Installation inside a Rails app

Add this line in your Gemfile:

gem "redis_dashboard"

In your terminal run the following command:

bundle install

Then mount the app from config/routes.rb:

mount RedisDashboard::Application, at: "redis_dashboard"

Specify the Redis URLs in config/redis_dashboard.rb:

RedisDashboard.urls = ["redis://localhost"]

Finally visit http://localhost/redis_dashboard/.

Authentication

To protect your dashboard you can setup a basic HTTP authentication:

RedisDashboard::Application.use(Rack::Auth::Basic) do |user, password|
  user == "USER" && password == "PASSWORD"
end

MIT License

Made by Base Secrète.

Rails developer? Check out RoRvsWild, our Ruby on Rails application monitoring tool.


*Note that all licence references and agreements mentioned in the Redis Dashboard README section above are relevant to that project's source code only.