How to monitor Redis as a queue engine using cli similar to beanstalkd?
问题 Background We used Laravel Queues on top of beanstalkd on two ec2 instances (behind a load balancer). As the system scaled we decided to use redis instead of beanstalkd, and host it on an AWS elastic cache instance (with a cluster of a master node and two replicas). With beanstalkd, I used beanstalk utilities to monitor the health of the queue; for example if the queue was getting clogged, I could easily see that by running a command like this: ./beanstalk-queue-stats.rb localhost:11300 Which