0

From Redis CLI I can see number of connected clients by running client list.

enter image description here

Now I want to see number connection per client(by addr or id) made to Redis Cluster.

Is there any way to do so. Thanks in advance.

Shubho Shaha
  • 1,869
  • 1
  • 16
  • 22

1 Answers1

0

You can call redis-cli --cluster call <ip>:<port> CLIENT LIST and have a shell script to grep/sort/aggregate the results per client address/id.

Itamar Haber
  • 47,336
  • 7
  • 91
  • 117