Redis administration panel

Redis

Redis Problem Overview


Is there a standard or de facto standard GUI administration panel for Redis? I'd like to see general health and status of my Redis instances through a web interface. Advanced stuff such as access to logs, trends on memory usage, etc. would be nice but not necessary. I'm running Redis on a Hadoop cluster, in which I enjoy having pages for the JobTracker, NameNode, Ganglia, etc.

There are a few out there, but at first glance they don't seem ready for prime time.

Redis Solutions


Solution 1 - Redis

I am a big fan of Redis-Commander

Solution 2 - Redis

Give a try to Redsmin (long description here). Its a fully online GUI for Redis that provides a lot of features.

It currently offers:

  • No installation and cross-platform
  • Multiple database management (with direct or proxied access)
  • Keys tree and list view (with optional real-time update)
  • Batch operation over multiple key that match a pattern
  • Data editor
  • LUA editor

Redis LUA Editor

  • Redis Cluster monitoring

  • Online configuration (with command override support)

  • JavaScript API directly accessible from the browser console for light data processing

Redis JavaScript API

  • Monitoring features
  • Online terminal with auto-completion and inline-documentation
  • Real-time data-visualization (histogram, pie, ...)
  • Monitoring (and alerting soon)

enter image description here

enter image description here

https://www.linkedin.com/profile/view?id=AAIAAAD-U- YBJN9lpixm6nxrnAaHQY5DoZ0FcNQ&trk=nav_responsive_tab_profile" width="1" height="1">

Solution 3 - Redis

I've been running [Redmon][1] for a few days and it does a nice job graphing the live redis memory usage and keyspace, activity in a web UI with a CLI for typing redis commands too. It's a Ruby application which was very easy to run once the dependencies were installed.

[1]: https://github.com/steelThread/redmon "Redmon"

Solution 4 - Redis

redis-cli info provides a wealth of information about the health of a redis instance. Formatting its output for easier digestion shouldn't be too hard.

Solution 5 - Redis

You can also try phpredmin. It provides simple statistics about your redis and a panel for manipulating databases and keys

Solution 6 - Redis

I just found another redis admin program, single file, very easy to set up (I had to change the redis autoloader require on line 60 of the program). It's simple, but sufficient!

code.google.com/p/php-redis-browser

Solution 7 - Redis

There is also the project RedWeb. It is written in Python, and is built on the Bottle micro-framework.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionDonald MinerView Question on Stackoverflow
Solution 1 - RedisEvanView Answer on Stackoverflow
Solution 2 - RedisFGRibreauView Answer on Stackoverflow
Solution 3 - RedisdajobeView Answer on Stackoverflow
Solution 4 - RedisCarl ZulaufView Answer on Stackoverflow
Solution 5 - RedisSasan RoseView Answer on Stackoverflow
Solution 6 - RedispatrickView Answer on Stackoverflow
Solution 7 - RedisAurelienView Answer on Stackoverflow