mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-23 06:35:42 +00:00
Initial version
This commit is contained in:
parent
9045f18de1
commit
237bf0581b
1 changed files with 43 additions and 0 deletions
43
plugins/other/mongo_lock
Executable file
43
plugins/other/mongo_lock
Executable file
|
@ -0,0 +1,43 @@
|
||||||
|
#!/usr/bin/python
|
||||||
|
|
||||||
|
## GENERATED FILE - DO NOT EDIT
|
||||||
|
|
||||||
|
import urllib2
|
||||||
|
import sys
|
||||||
|
|
||||||
|
try:
|
||||||
|
import json
|
||||||
|
except ImportError:
|
||||||
|
import simplejson as json
|
||||||
|
|
||||||
|
|
||||||
|
def getServerStatus():
|
||||||
|
raw = urllib2.urlopen( "http://127.0.0.1:28017/_status" ).read()
|
||||||
|
return json.loads( raw )["serverStatus"]
|
||||||
|
|
||||||
|
name = "locked"
|
||||||
|
|
||||||
|
def doData():
|
||||||
|
print name + ".value " + str( 100 * getServerStatus()["globalLock"]["ratio"] )
|
||||||
|
|
||||||
|
def doConfig():
|
||||||
|
|
||||||
|
print "graph_title MongoDB write lock percentage"
|
||||||
|
print "graph_args --base 1000 -l 0 "
|
||||||
|
print "graph_vlabel percentage"
|
||||||
|
print "graph_category MongoDB"
|
||||||
|
|
||||||
|
print name + ".label " + name
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
if len(sys.argv) > 1 and sys.argv[1] == "config":
|
||||||
|
doConfig()
|
||||||
|
else:
|
||||||
|
doData()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue