REDIS: Connection Count by Client

I just wanted a quick way to see where connections to my redis server were coming from, and how many there were. The redis CLIENT LIST command had all the info, I just needed to massage it.

AdamP@cartographer ~> redis-cli -h myredisserver CLIENT LIST | sed -n 's|.*addr=\(.*\)\:.*|\1|p' | sort | uniq -c
   2 127.0.0.1
 686 192.168.0.141
   2 192.168.0.144
   8 192.168.0.20
   6 192.168.0.66
   4 192.168.0.67

May your google searches lead you here, to prevent you from having to pipe this yourself.

 
92
Kudos
 
92
Kudos

Now read this

When In Doubt: Delete

People have known about effective communication for a long time, here is one of the best and earliest expressions of it, by Blaise Pascal in 1656. I would have written a shorter letter, but I did not have the time. And, here is my... Continue →