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

Assume You’re Wrong

I was at PayScale for a little over 7. I’ve had some really incredible mentors along the way, and after several years, I’ve synthesized a lot of my learning into one simple sentence: Assume You’re Wrong. I started taking this philosophy... Continue →