Show HN: Redis Dashboard
github.com
Show HN: Redis Dashboard
1–10 of 25 posts
Re: Show HN: Redis Dashboard
#2Re: Show HN: Redis Dashboard
#3Are you storing metric data? or is it all in the browser? (e.g. do you get the full screen you just showed when you first open it up, or is it like a process mon where it's all 0 until you look at it)?
Re: Show HN: Redis Dashboard
#4sorry for not just digging through the source, but what are you using for the charts? Are you storing metric data? or is it all in the browser? (e.g. do you get the full screen you just showed when you first open it up, or is it like a process mon where it's all 0 until you look at it)?
https://github.com/kumarnitin/RedisLive/blob/master/src/www/...
Re: Show HN: Redis Dashboard
#5About top-keys, no way to show this without MONITOR, but it's not the most important bit of the visualization IMHO.
So very cool but a tool like this should not try to capture the stream of the commands executed by instead rely on what the system can provide as already aggregated stats.
Re: Show HN: Redis Dashboard
#6sorry for not just digging through the source, but what are you using for the charts? Are you storing metric data? or is it all in the browser? (e.g. do you get the full screen you just showed when you first open it up, or is it like a process mon where it's all 0 until you look at it)?
For storing the data i have a sqlite implementation and a redis implementation. sqlite works out of the box by default, but i prefer the redis implementation, much faster. https://github.com/kumarnitin/RedisLive/blob/master/src/data...
Re: Show HN: Redis Dashboard
#7Great output, but IMHO the data source should change to be just INFO and not MONITOR: with Redis 2.4 you can't show top-commands. With 2.6 INFO has enough data about this (see INFO commandstats). About top-keys, no way to show this without MONITOR, but it's not the most important bit of the visualization IMHO. So very cool but a tool like this should not try to capture the stream of the commands executed by instead r…
Can you connect with me on twitter @nkrode
Re: Show HN: Redis Dashboard
#8Great output, but IMHO the data source should change to be just INFO and not MONITOR: with Redis 2.4 you can't show top-commands. With 2.6 INFO has enough data about this (see INFO commandstats). About top-keys, no way to show this without MONITOR, but it's not the most important bit of the visualization IMHO. So very cool but a tool like this should not try to capture the stream of the commands executed by instead r…
Re: Show HN: Redis Dashboard
#9Great output, but IMHO the data source should change to be just INFO and not MONITOR: with Redis 2.4 you can't show top-commands. With 2.6 INFO has enough data about this (see INFO commandstats). About top-keys, no way to show this without MONITOR, but it's not the most important bit of the visualization IMHO. So very cool but a tool like this should not try to capture the stream of the commands executed by instead r…
agreed on MONITOR command, i rather just use INFO however on our deployment, top keys and commands are usually the most important information i'm looking for and with 2.4 there is currently no way.