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

How to Make $1,200 with R

“How much should I rent my condo for?” Turns out, the answer is: “Guess.” So, I built the data-driven solution this problem. Our family has spent the last year trying to buy a house in Seattle, and we’ve finally hit the mark and we’re... Continue →