mongodb_exporter
mongodb_exporter copied to clipboard
MongoDB exporter for prometheus.io
Is mongodb_exporter supports Windows OS also? I can see download for Linux and Mac OS only. How can I test in windows machine?
Hi @dcu Currently I'm using mongodb_expoerter in my environment, and I don't want to install too many agents. Now I want a feature to a different url path. 1. allow...
My mongodb has a username = [email protected] password=xxx.xxx.xxx I used the command: ``` mongodb_exporter -mongodb.uri mongodb://[email protected]:[email protected]:27017 ``` but , I got the Error notice E0926 16:30:13.003667 44532 connection.go:48] Cannot connect...
Could we set up a Travis CI project for this repo? Would be helpful to track test coverage + run CI against pull requests
i'm trying to get the time taken for all queries in mongodb. I'm not able to find a relevant metrics which gives this value from the log *`protocol:op_msg 501439ms`*
Start mongodb in 192.168.2.254 centos 7 with no username and password set ```bash docker run -d -p 27017:27017 mongo:4.1 ``` Then I start the exporter binary in another centos in...
add global mongo keep-connection session option by set flag -mongodb.keep-connection=true
I am using mongo exporter to extract metrics in prometheus. However i believe i cannot see all teh metrics( like index_counters_total and many others by going through the collector code)....
Found by @akira-kurogane at https://github.com/percona/mongodb_exporter/pull/118.
```golang func mongodbDefaultURI() string { if u := os.Getenv("MONGODB_URL"); u != "" { return u } return "mongodb://localhost:27017" } var ( mongodbURIFlag = flag.String("mongodb.uri", mongodbDefaultURI(), "Mongodb URI, format: [mongodb://][user:pass@]host1[:port1][,host2[:port2],...][/database][?options]") )...