├── .gitignore ├── LICENSE ├── README.md ├── check_mongodb.py └── requirements /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzupan/nagios-plugin-mongodb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzupan/nagios-plugin-mongodb/HEAD/README.md -------------------------------------------------------------------------------- /check_mongodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzupan/nagios-plugin-mongodb/HEAD/check_mongodb.py -------------------------------------------------------------------------------- /requirements: -------------------------------------------------------------------------------- 1 | pymongo 2 | --------------------------------------------------------------------------------