A web display of information about Redis servers
redweb is a super simple web display of information about a set of Redis servers. It just provides the content of the
INFOcommand in a nice format, for any number of Redis instances.
gem install sinatra
gem install redis
ruby redweb.rb [path/to/your_config_file.yml]
The config file is a YAML file, and it's where you tell redweb the hostname and port for your Redis servers. It must be structured like this:
redis1: hostname: 127.0.0.1 port: 6390redis2: hostname: 127.0.0.1 port: 6391
redis3: hostname: 127.0.0.1 port: 6392
redweb will use the names (like
redis1) as identifiers.
MIT