Description
This tool allows you to manage Redis, thanks to a web interface you can easily manage your Redis instance (see your keys, the memory used, clients connected, etc …).
RedisWebManager alternatives and similar gems
Based on the "Authorization" category.
Alternatively, view RedisWebManager alternatives based on common mentions on social networks and blogs.
-
Pundit
Minimal authorization through OO design and pure Ruby classes -
Oso
Oso is a batteries-included framework for building authorization in your application. -
Declarative Authorization
An unmaintained authorization plugin for Rails. Please fork to support current versions of Rails -
Action Policy
Authorization framework for Ruby/Rails applications -
Authority
ORM-neutral way to authorize actions in your Rails app. -
AccessGranted
Multi-role and whitelist based authorization gem for Rails (and not only Rails!) -
RatyRate Stars Rating Gem
:star: A Ruby Gem that wraps the functionality of jQuery Raty library, and provides optional IMDB style rating. -
RoleCore
🔐A Rails engine providing essential industry of Role-based access control. -
Groupify
Add group and membership functionality to your Rails models -
Canard
Makes role based authorization in Rails really simple. Wraps CanCan and RoleModel up with a smattering of syntactic sugar, some generators and scopes. -
Yabeda::Puma::Plugin
Collects Puma web-server metrics from puma control panel -
browserslist_useragent gem
Find if a given user agent string satisfies a Browserslist browsers. -
Verifica
Verifica is Ruby's most scalable authorization solution -
Kno Ruby
DID is an Identity Provider, that authenticates users by verifying access to either an email address or securely stored private key. -
JayDoubleUti
A JWT authorization middleware for any web application.
Clean code begins in your IDE with SonarLint
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of RedisWebManager or a related project?
README
RedisWebManager
Web interface that allows you to manage easily your Redis instance (see keys, memory used, connected client, etc...).
Check your stats
The Dashboard allows you to check the Memory usage, CPU and Redis clients.
[RedisWebManager Dashboard](images/images_dashboard.png)
Manage your redis keys
You can easily edit and delete any keys stored in your redis database.
[RedisWebManager Keys](images/images_keys.png)
Keep an eye on your redis clients
Check how many clients are connected and their infos.
[RedisWebManager Clients](images/images_clients.png)
Installation
Add this line to your application's Gemfile:
gem 'redis_web_manager'
And then execute:
$ bundle
Or install it yourself as:
$ gem install redis_web_manager
Add the custom route in your routes.rb
:
mount RedisWebManager::Engine => '/redis_web_manager'
Access to RedisWebManager at /redis_web_manager
Configuration
You can configure RedisWebManager:
# initializers/redis_web_manager.rb
RedisWebManager.configure do |config|
config.redises = {
default: Redis.new(db: 1),
production: Redis.new(url: 'XXX')
} # Default { default: Redis.new } (Hash with instance(s) of Redis)
config.lifespan = 2.days # Default 15.days (Lifespan of each keys for dashboard)
config.authenticate = proc {
authenticate_or_request_with_http_basic do |username, password|
username == 'TEST' && password == 'TEST'
end
} # Default nil (Authenticate method to secure tools)
end
Collect data for dashboard
In order to have data on your dashboard you must collect the data like this:
data = RedisWebManager::Data.new(:default)
data.perform
or
RedisWebManager.redises.keys.each do |instance|
data = RedisWebManager::Data.new(instance)
data.perform
end
If you are using a system to run background tasks in your application (like Sidekiq, Sucker Punch or ActiveJob), you can write your own background task to update the dashboard statistics.
Sidekiq exemple:
class DashboardWorker
include Sidekiq::Worker
def perform
data = RedisWebManager::Data.new(:default)
data.perform
end
end
or
class DashboardWorker
include Sidekiq::Worker
def perform
RedisWebManager.redises.keys.each do |instance|
data = RedisWebManager::Data.new(instance)
data.perform
end
end
end
Sucker Punch exemple:
class DashboardJob
include SuckerPunch::Job
def perform
data = RedisWebManager::Data.new(:default)
data.perform
end
end
or
class DashboardJob
include SuckerPunch::Job
def perform
RedisWebManager.redises.keys.each do |instance|
data = RedisWebManager::Data.new(instance)
data.perform
end
end
end
Todo
- [ ] Add graph for most used commands
- [ ] Real time chart update
- [ ] Alert system (ex: triggered when memory is peaking)
- [ ] Command line interface to manage your redis database
- [ ] Logs interface
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/OpenGems/redis_web_manager. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
License
The gem is available as open source under the terms of the MIT License.
*Note that all licence references and agreements mentioned in the RedisWebManager README section above
are relevant to that project's source code only.