mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
30 lines
765 B
Text
30 lines
765 B
Text
![]() |
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from vendor.munin.mongodb import MuninMongoDBPlugin
|
||
|
|
||
|
class MongoDBPageFaultsPlugin(MuninMongoDBPlugin):
|
||
|
args = "-l 0 --base 1000"
|
||
|
vlabel = "page faults / sec"
|
||
|
title = "MongoDB page faults"
|
||
|
info = "Page faults"
|
||
|
fields = (
|
||
|
('page_faults', dict(
|
||
|
label = "page faults",
|
||
|
info = "Page faults",
|
||
|
type = "DERIVE",
|
||
|
min = "0",
|
||
|
)),
|
||
|
)
|
||
|
|
||
|
def execute(self):
|
||
|
status = self.connection.admin.command('serverStatus')
|
||
|
try:
|
||
|
value = status['extra_info']['page_faults']
|
||
|
except KeyError:
|
||
|
value = "U"
|
||
|
return dict(page_faults=value)
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
MongoDBPageFaultsPlugin().run()
|