Preparing MongoDB for monitoring

In Redgate Monitor,supported versions of MongoDB servers can be found here.

For Linux, supported versions can be found here.

Setting up a MongoDB User 

When connected to the admin database on the MongoDB instance, run: 

  1. use admin;
  2. db.createUser(
  3. {
  4. user: "redgatemonitor",
  5. pwd: "<password>",
  6. roles: [{role: "clusterMonitor", db: "admin"}]
  7. });



Didn't find what you were looking for?