-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support LLEN #10
Comments
@chrsblck I'll see how long it annoys me for and may have a stab at it. I wouldn't hold your breath because I have some other priorities at the moment, I do have a interest in getting it to work.
It's a good idea, but I'm not entirely convinced of their usefulness with respect to monitoring the metrics of a redis instance. They seem to me to be useful commands for applications using redis as a message queue that want to easily get properties of a string. Having said that; STRLEN and HLEN would probably be very easy to implement alongside LEN, and if someone really wanted HSTRLEN, it would be just another function that would use the output of HLEN to determine the number of fields anyways. |
I'm using Redis as a message queue for elasticsearch.
Logstash output and input plugins actually support writing messages to a single list/key or a channel. Currently, redisbeat is unable to send the length
LLEN
of a list/key as a statistic as far as I can see, and theINFO keyspace
stats don't really tell me how deep the queue of the list/key actually is.I want to get this statistic:
Keyspace looks like this though:
This is about the only thing left in my stack that I can't monitor with metricbeat that I'm interested in. This would be a pretty useful feature considering the function of other Elastic programs.
The text was updated successfully, but these errors were encountered: