mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-04-13 09:42:01 +00:00
29 lines
769 B
Python
Executable file
29 lines
769 B
Python
Executable file
#!/srv/newsblur/venv/newsblur3/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from vendor.munin.mongodb import MuninMongoDBPlugin
|
|
|
|
class MongoDBHeapUsagePlugin(MuninMongoDBPlugin):
|
|
args = "-l 0 --base 1024"
|
|
vlabel = "bytes"
|
|
title = "MongoDB heap usage"
|
|
info = "Heap usage"
|
|
fields = (
|
|
('heap_usage', dict(
|
|
label = "heap usage",
|
|
info = "heap usage",
|
|
type = "GAUGE",
|
|
min = "0",
|
|
)),
|
|
)
|
|
|
|
def execute(self):
|
|
status = self.connection.admin.command('serverStatus')
|
|
try:
|
|
value = status['extra_info']['heap_usage_bytes']
|
|
except KeyError:
|
|
value = "U"
|
|
return dict(heap_usage=value)
|
|
|
|
if __name__ == "__main__":
|
|
MongoDBHeapUsagePlugin().run()
|