2.1.0 • Published 9 years ago
pm2-redis v2.1.0
Description
PM2 module to monitor a Redis server with Keymetrics
Install
pm2 install pm2-redis
Configure
workerInterval(Defaults to2in 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_IPenv var)port(Defaults to6379): Set the port of your redis server (can be load fromPM2_REDIS_PORTenv var)password(Defaults tonone): Set the password if you have activated the authentification (can be load fromPM2_REDIS_PWDenv var)
How to set these values ?
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)
Uninstall
pm2 uninstall pm2-redis