RabbitMQ module for Keymetrics
PM2 module to monitor key RabbitMQ server metrics:
- Publish Rate / Deliver Rate
This module requires a RabbitMQ install (tested against v3.5.4). You also need to enable the RabbitMQ management plugin
$ npm install pm2 -g
$ pm2 install pm2-rabbitmq
The default connection details are : "username": "guest" "password": "guest" "hostname": "localhost:15672" "protocol": "http"
guest/guest is a user created by default when installing RabbitMQ but you can change this to any other admin user
To modify the config values you can use the commands:
$ pm2 set pm2-rabbitmq:username myuser
$ pm2 set pm2-rabbitmq:password mypass
$ pm2 set pm2-rabbitmq:hostname a.b.c.d:port
$ pm2 set pm2-rabbitmq:protocol https
$ pm2 uninstall pm2-rabbitmq
MIT