redis-cloudwatch
redis-cloudwatch copied to clipboard
Colect Multiple ports
Hi, I have multiple redis-server in different ports on the same instance, can I include this differents ports on the script ?
Something like that:
def collect_redis_info(): r = redis.StrictRedis('localhost', port='6379,6380' db=0) info = r.info() cmd_info = r.info('commandstats')
Thanks