Read-only by design
Connect your MongoDB Atlas cluster
Paste a connection string. We'll probe the cluster for reachability and ask for the read-only user we recommend.
Recommended: create a read-only user
In mongosh:
use admin
db.createUser({
user: "argus_ro",
pwd: "<a-strong-password>",
roles: [{ role: "readAnyDatabase", db: "admin" }]
})Then use the resulting connection string in the form above.
Want to skip the connect step? Go straight to the dashboard (mock data).