2010-06-07 08:35:35 +02:00
|
|
|
#!/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 = "connections"
|
|
|
|
|
|
|
|
|
|
|
|
def doData():
|
|
|
|
print name + ".value " + str( getServerStatus()["connections"]["current"] )
|
|
|
|
|
|
|
|
def doConfig():
|
|
|
|
|
|
|
|
print "graph_title MongoDB current connections"
|
|
|
|
print "graph_args --base 1000 -l 0"
|
|
|
|
print "graph_vlabel connections"
|
2017-02-23 20:45:01 +01:00
|
|
|
print "graph_category db"
|
2010-06-07 08:35:35 +02:00
|
|
|
|
|
|
|
print name + ".label " + name
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
if len(sys.argv) > 1 and sys.argv[1] == "config":
|
|
|
|
doConfig()
|
|
|
|
else:
|
|
|
|
doData()
|
|
|
|
|
|
|
|
|