PM2 module to monitor a Redis server with Keymetrics
pm2 install pm2-redis
workerInterval
(Defaults to2
in secs) : You can control at which interval the worker is updating the stats (minimum is1
)ip
(Defaults to127.0.0.1
): Set the host of your redis server (can be load fromPM2_REDIS_IP
env var)port
(Defaults to6379
): Set the port of your redis server (can be load fromPM2_REDIS_PORT
env var)password
(Defaults tonone
): Set the password if you have activated the authentification (can be load fromPM2_REDIS_PWD
env var)
After having installed the module you have to type :
pm2 set pm2-redis:
e.g:
pm2 set pm2-redis:workerInterval 5
(every 5 seconds)pm2 set pm2-redis:ip 42.42.42.42
(ip of my redis server)pm2 set pm2-redis:password "bestpassword"
(the password will be used to connect to redis)
pm2 uninstall pm2-redis