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: 

use admin;
db.createUser(
{
	user: "redgatemonitor",
	pwd: "<password>",
	roles: [{role: "clusterMonitor", db: "admin"}]
});



Didn't find what you were looking for?