-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathweb-trace.py
112 lines (92 loc) · 3.46 KB
/
web-trace.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
"""
Basic template for gevent web server (gevent profile)
"""
import gevent
from gevent import monkey
monkey.patch_all()
from gevent.pywsgi import WSGIServer
from cgi import parse_qs, escape
import time, greenlet, gevent.hub, threading
import argparse, pymysql, redis, json, logging.handlers
LOG_LEVEL = logging.DEBUG
LOG_FORMAT = '[%(levelname)1.1s %(asctime)s %(module)s:%(lineno)d] %(message)s'
SYSLOG = logging.handlers.SysLogHandler(address='/dev/log')
SYSLOG.setFormatter(logging.Formatter(LOG_FORMAT))
logging.basicConfig(format=LOG_FORMAT)
logging.getLogger().setLevel(LOG_LEVEL)
POOL = redis.ConnectionPool(host='localhost', port=6379,
db=0, max_connections=100)
MIN_DURATION_TO_LOG = 0.001
_last_switch_time = None
def log_greenlet_run_duration(what, (origin, target)):
global _last_switch_time
then = _last_switch_time
now = _last_switch_time = time.time()
if then is not None:
blocking_time = now - then
if origin is not gevent.hub.get_hub():
msg = "Greenlet took %.4f seconds (%s from %s %s to %s %s).\n"
msg = msg % (blocking_time, what, type(origin), id(origin), type(target), id(target))
print msg
greenlet.settrace(log_greenlet_run_duration)
def redis_exec():
"""
retrieve redis info array
"""
connection = redis.Redis(connection_pool=POOL)
return connection.info()
def mysql_exec():
"""
retrieve mysql hosts
"""
dbase = pymysql.connect(host='127.0.0.1', port=3306,
user='root', passwd='mysql', db='mysql')
result = dbase.cursor()
result.execute("SELECT Host FROM user WHERE User = 'root' LIMIT 1")
res = []
for host in result:
res.append(host[0])
result.close()
dbase.close()
return res
def application(environ, start_response):
"""
application handler
"""
status = '200 OK'
headers = [('Content-Type', 'application/json; charset=utf-8')]
data = parse_qs(environ['QUERY_STRING'])
time = int(escape(data.get('t', ['0'])[0]))
if time > 0:
gevent.sleep(int(time))
gev1 = gevent.spawn(redis_exec)
gev2 = gevent.spawn(mysql_exec)
gevent.joinall([gev1, gev2])
if gev1.value == None or gev2.value == None:
start_response("503", headers)
yield ("%s\n" % json.dumps(
{"error": "Sorry, service unavailable."})[:1024]).encode('utf-8')
else:
start_response(status, headers)
yield ("%s\n" % json.dumps({"redis": gev1.value["redis_version"],
"mysql":gev2.value, "t":time})[:1024]).encode('utf-8')
if __name__ == "__main__":
PARSER = argparse.ArgumentParser()
PARSER.add_argument('-s', '--syslog',
dest="syslog",
action='store_true',
help="enable syslog (default: disabled)")
PARSER.add_argument('-b', '--bind',
dest="bind",
default="0.0.0.0",
help="bind address (default: 0.0.0.0)")
PARSER.add_argument('-p', '--port',
dest="port",
type=int,
default=8000,
help="listen port (default: 8000)")
ARGS = PARSER.parse_args()
if ARGS.syslog:
logging.getLogger().addHandler(SYSLOG)
logging.info('Listening on %s:%d...' % (ARGS.bind, ARGS.port))
WSGIServer((ARGS.bind, ARGS.port), application).serve_forever()