1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-24 09:57:09 +00:00

Update mongodb plugins

* Update mongodb plugins
* fix category
* chmod +x
* flake8-CI
* flake8 adjustments for mongo_collection_ and env python3
This commit is contained in:
Alban 2020-02-13 16:11:16 +01:00 committed by GitHub
parent 52144bc277
commit 276169a6c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 360 additions and 146 deletions

View file

@ -53,8 +53,8 @@ def _get_connections():
def run():
connections = _get_connections()
for connection, value in connections.items():
print(connection + ".value", value)
for c, v in connections.items():
print(str(c) + ".value " + str(v))
def config():