wiki'd

by JoKeru

Redmon - redis dashboard / admin interface / monitoring

I've been looking for a Redis Admin UI, but it looks like there is no "standard" one.

Then I've tried Redmon and liked it because:
- easy to install
- it has a nice design
- you can run console commands
- you can change configuration

[cc lang='bash']
# debian squeeze
\$ apt-get install ruby rubygems
\$ gem install sinatra json
\$ gem install redmon
\$ /var/lib/gems/1.8/gems/redmon-0.0.10/bin/redmon -a 127.0.0.1 -l 300 &
# redmon will be protected by a reverse proxy, that's why we bind it to localhost
[/cc]

[caption id="attachment\_1210" align="aligncenter" width="300"][![redmon](http://wiki.jokeru.ro/wp-content/uploads/2014/10/redmon-300x218.png)](http://wiki.jokeru.ro/wp-content/uploads/2014/10/redmon.png)

Redmon Interface
[/caption]

more details: https://github.com/steelThread/redmon

Comments