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

The Halloween Calorie Penalty

This is the first year we’ve lived in a house in a neighborhood that might have kids trick-or-treating, so naturally, we bought the big bag of candy from Costco – 150 pieces. We had 8 kids show up. And, we tried to push a bunch on them,... Continue →