https://github.com/percona/mongodb_exporter
100K+
Based on MongoDB exporter for prometheus.io, written in go (https://github.com/dcu/mongodb_exporter), but forked for full sharded support and structure changes.
The exporter is in beta/experimental state and field names are very likely to change and features may change or get removed!
go build -o mongodb_exporter github.com/percona/mongodb_exporter
The exporter can be started by running the 'mongodb_exporter' binary that is created in the build step. The exporter will try to connect to 'mongodb://localhost:27017' (no auth) as default if no options are supplied.
It is recommended to define the following options:
To define your own MongoDB URL, use environment variable MONGODB_URL. If set this variable takes precedence over -mongodb.uri flag.
For example: export MONGODB_URL=mongodb://localhost:27017
To enable HTTP basic authentication, set environment variable HTTP_AUTH to user:password pair.
For example: export HTTP_AUTH="user:password"
For more options see the help page with '-h' or '--help'
If you use MongoDB Authorization, you must:
db.getSiblingDB("admin").createUser({
user: "mongodb_exporter",
pwd: "s3cr3tpassw0rd",
roles: [
{ role: "clusterMonitor", db: "admin" },
{ role: "read", db: "local" }
]
})
MONGODB_URL before starting the exporter:export MONGODB_URL=mongodb://mongodb_exporter:s3cr3tpassw0rd@localhost:27017
Point the process to any mongo port and it will detect if it is a mongos, replicaset member, or stand alone mongod and return the appropriate metrics for that type of node. This was done to preent the need to an exporter per type of process.
Content type
Image
Digest
Size
126.7 MB
Last updated
over 9 years ago
docker pull elarasu/mongodb_exporter