2008-11-05 01:03:06 +00:00
|
|
|
#!/usr/bin/env python
|
2008-03-27 23:46:08 +00:00
|
|
|
|
2019-03-22 10:40:58 +00:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2008-03-27 23:46:08 +00:00
|
|
|
import os, sys
|
|
|
|
import urllib
|
2017-01-19 22:39:53 +00:00
|
|
|
import json
|
2008-03-27 23:46:08 +00:00
|
|
|
|
|
|
|
configinfo = """\
|
2008-03-27 23:50:30 +00:00
|
|
|
graph_title Tahoe Helper Stats - Active Files
|
2008-03-27 23:46:08 +00:00
|
|
|
graph_vlabel bytes
|
2008-03-28 23:18:30 +00:00
|
|
|
graph_category tahoe
|
2008-03-27 23:50:30 +00:00
|
|
|
graph_info This graph shows the number of files being actively processed by the helper
|
|
|
|
fetched.label Active Files
|
|
|
|
fetched.draw LINE2
|
2008-03-27 23:46:08 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
if len(sys.argv) > 1:
|
|
|
|
if sys.argv[1] == "config":
|
2019-03-22 10:40:58 +00:00
|
|
|
print(configinfo.rstrip())
|
2008-03-27 23:46:08 +00:00
|
|
|
sys.exit(0)
|
|
|
|
|
|
|
|
url = os.environ["url"]
|
|
|
|
|
2017-01-19 22:39:53 +00:00
|
|
|
data = json.loads(urllib.urlopen(url).read())
|
2019-03-22 10:40:58 +00:00
|
|
|
print("fetched.value %d" % data["chk_upload_helper.active_uploads"])
|
2008-03-27 23:50:30 +00:00
|
|
|
|