Mercurial > templog
annotate web/index.py @ 341:ccab04e2f601
- decrease measurement interval, measure at start
- fix integer sizes or format strings
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sat, 16 Jun 2012 09:07:38 +0800 |
parents | f575ef538f5d |
children |
rev | line source |
---|---|
333 | 1 #!/usr/bin/env python2.7 |
2 | |
334 | 3 import binascii |
4 import hmac | |
335 | 5 import zlib |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
336
diff
changeset
|
6 import datetime |
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
336
diff
changeset
|
7 import time |
334 | 8 |
333 | 9 import bottle |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
336
diff
changeset
|
10 from bottle import route, request, response |
333 | 11 |
334 | 12 import config |
13 import log | |
14 | |
333 | 15 @route('/update', method='post') |
16 def update(): | |
334 | 17 enc_lines = request.forms.lines |
18 mac = request.forms.hmac | |
19 | |
20 if hmac.new(config.HMAC_KEY, enc_lines).hexdigest() != mac: | |
21 raise HTTPError(code = 403, output = "Bad key") | |
22 | |
335 | 23 lines = zlib.decompress(binascii.a2b_base64(enc_lines)).split('\n') |
334 | 24 |
25 log.parse(lines) | |
26 | |
27 return "OK" | |
333 | 28 |
29 @route('/graph.png') | |
30 def graph(): | |
336
ba4c4df13487
parse the arguments for start/length
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
31 # url takes time in hours or days |
ba4c4df13487
parse the arguments for start/length
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
32 if 'day' in request.query: |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
336
diff
changeset
|
33 start_day = datetime.datetime.strptime(request.query.day, '%Y%m%d') |
336
ba4c4df13487
parse the arguments for start/length
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
34 start = time.mktime(start_day.timetuple()) |
ba4c4df13487
parse the arguments for start/length
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
35 length = int(request.query.length) * 3600 * 24 |
ba4c4df13487
parse the arguments for start/length
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
36 else: |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
336
diff
changeset
|
37 start_hour = datetime.datetime.strptime(request.query.hour, '%Y%m%d%H') |
336
ba4c4df13487
parse the arguments for start/length
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
38 start = time.mktime(start_hour.timetuple()) |
ba4c4df13487
parse the arguments for start/length
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
39 length = int(request.query.length) * 3600 |
ba4c4df13487
parse the arguments for start/length
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
40 |
ba4c4df13487
parse the arguments for start/length
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
41 response.set_header('Content-Type', 'image/png') |
ba4c4df13487
parse the arguments for start/length
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
42 return log.graph_png(start, length) |
333 | 43 |
44 @route('/') | |
45 def top(): | |
46 return bottle.template('top', urlparams=request.query_string) | |
47 | |
48 def main(): | |
49 bottle.debug(True) | |
50 bottle.run(port=9999, reloader=True) | |
51 | |
52 if __name__ == '__main__': | |
53 main() | |
54 | |
55 |