Redmon - A web interface for managing redis: cli, admin, and live monitoring
1–10 of 11 posts
Re: Redmon - A web interface for managing redis: cli, admin, and live monitoring
#2Re: Redmon - A web interface for managing redis: cli, admin, and live monitoring
#3Re: Redmon - A web interface for managing redis: cli, admin, and live monitoring
#4Re: Redmon - A web interface for managing redis: cli, admin, and live monitoring
#5I'd like to be able to enter a key-matching pattern 'users:*' and see the list of all the keys (and metadata like expiration time, number of accesses, update/created time).
EDIT: Found this - http://www.servicestack.net/RedisAdminUI/AjaxClient/# looks like what I was searching for, or at least 80% of it.
Re: Redmon - A web interface for managing redis: cli, admin, and live monitoring
#6Somewhat related - is there any project for viewing the key/value pairs in a redis instance in a more friendly way than via the command-line? I'd like to be able to enter a key-matching pattern 'users:*' and see the list of all the keys (and metadata like expiration time, number of accesses, update/created time). EDIT: Found this - http://www.servicestack.net/RedisAdminUI/AjaxClient/# looks like what I was searching…
Basically, if you're having to do this in prod, you may be fucked.
Re: Redmon - A web interface for managing redis: cli, admin, and live monitoring
#7Somewhat related - is there any project for viewing the key/value pairs in a redis instance in a more friendly way than via the command-line? I'd like to be able to enter a key-matching pattern 'users:*' and see the list of all the keys (and metadata like expiration time, number of accesses, update/created time). EDIT: Found this - http://www.servicestack.net/RedisAdminUI/AjaxClient/# looks like what I was searching…
This is a very expensive operation if you have a large number of keys, and can easily block redis. keys is intended for debugging a relatively small number of keys. Basically, if you're having to do this in prod, you may be fucked.
You certainly shouldn't use it in production code, but running it on a production database by hand occasionally shouldn't be too bad. (Especially if you have slaves.)
Re: Redmon - A web interface for managing redis: cli, admin, and live monitoring
#8Re: Redmon - A web interface for managing redis: cli, admin, and live monitoring
#9Redis should get an an HTTP API. Would enable you to implement something like this purely in the browser. UIs are really useful from a sys admin point of view. I can also imagine adoption increasing if Redis supported a UI out-of-the-box.
Re: Redmon - A web interface for managing redis: cli, admin, and live monitoring
#10Redis should get an an HTTP API. Would enable you to implement something like this purely in the browser. UIs are really useful from a sys admin point of view. I can also imagine adoption increasing if Redis supported a UI out-of-the-box.
I've been happy running it in production.