Mercurial > templog
annotate web/log.py @ 350:03322c38b4a9
Create with a start date so that it works
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sat, 23 Jun 2012 23:37:01 +0800 |
parents | d6219df77c41 |
children | 425af63d584d |
rev | line source |
---|---|
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
1 #:vim:et:ts=4:sts=4:sw=4: |
333 | 2 import rrdtool |
3 import os | |
335 | 4 import os.path |
333 | 5 import sys |
335 | 6 import glob |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
7 import hashlib |
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
8 import tempfile |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
9 import time |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
10 import syslog |
335 | 11 from colorsys import hls_to_rgb |
333 | 12 |
334 | 13 import config |
333 | 14 |
15 def sensor_rrd_path(s): | |
334 | 16 return '%s/sensor_%s.rrd' % (config.DATA_PATH, s) |
333 | 17 |
335 | 18 # returns (path, sensor_name) tuples |
19 def all_sensors(): | |
20 return [(r, os.path.basename(r[:-4])) | |
21 for r in glob.glob('%s/*.rrd' % config.DATA_PATH)] | |
22 | |
333 | 23 def create_rrd(sensor_id): |
350
03322c38b4a9
Create with a start date so that it works
Matt Johnston <matt@ucc.asn.au>
parents:
346
diff
changeset
|
24 # start date of 10 seconds into 1970 is used so that we can |
03322c38b4a9
Create with a start date so that it works
Matt Johnston <matt@ucc.asn.au>
parents:
346
diff
changeset
|
25 # update with prior values straight away. |
03322c38b4a9
Create with a start date so that it works
Matt Johnston <matt@ucc.asn.au>
parents:
346
diff
changeset
|
26 args = [sensor_rrd_path(sensor_id), |
03322c38b4a9
Create with a start date so that it works
Matt Johnston <matt@ucc.asn.au>
parents:
346
diff
changeset
|
27 '--start', '10', |
03322c38b4a9
Create with a start date so that it works
Matt Johnston <matt@ucc.asn.au>
parents:
346
diff
changeset
|
28 '--step', '300', |
03322c38b4a9
Create with a start date so that it works
Matt Johnston <matt@ucc.asn.au>
parents:
346
diff
changeset
|
29 'DS:temp:GAUGE:600:-10:100', |
03322c38b4a9
Create with a start date so that it works
Matt Johnston <matt@ucc.asn.au>
parents:
346
diff
changeset
|
30 'RRA:AVERAGE:0.5:1:1051200'] |
333 | 31 |
350
03322c38b4a9
Create with a start date so that it works
Matt Johnston <matt@ucc.asn.au>
parents:
346
diff
changeset
|
32 rrdtool.create(*args) |
335 | 33 |
34 # stolen from viewmtn, stolen from monotone-viz | |
35 def colour_from_string(str): | |
36 def f(off): | |
37 return ord(hashval[off]) / 256.0 | |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
38 hashval = hashlib.sha1(str).digest() |
335 | 39 hue = f(5) |
40 li = f(1) * 0.15 + 0.55 | |
41 sat = f(2) * 0.5 + .5 | |
42 return ''.join(["%.2x" % int(x * 256) for x in hls_to_rgb(hue, li, sat)]) | |
43 | |
44 def graph_png(start, length): | |
45 rrds = all_sensors() | |
46 | |
47 graph_args = [] | |
48 for n, (rrdfile, sensor) in enumerate(rrds): | |
49 vname = 'temp%d' % n | |
50 graph_args.append('DEF:%(vname)s=%(rrdfile)s:temp:AVERAGE' % locals()) | |
51 width = config.LINE_WIDTH | |
52 legend = config.SENSOR_NAMES.get(sensor, sensor) | |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
53 colour = config.SENSOR_COLOURS.get(legend, colour_from_string(sensor)) |
335 | 54 graph_args.append('LINE%(width)f:%(vname)s#%(colour)s:%(legend)s' % locals()) |
55 | |
56 tempf = tempfile.NamedTemporaryFile() | |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
57 args = [tempf.name, '-s', str(int(start)), |
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
58 '-e', str(int(start+length)), |
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
59 '-w', str(config.GRAPH_WIDTH), |
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
60 '-h', str(config.GRAPH_HEIGHT), |
335 | 61 '--slope-mode', |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
62 '--border', '0', |
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
63 '--color', 'BACK#ffffff', |
350
03322c38b4a9
Create with a start date so that it works
Matt Johnston <matt@ucc.asn.au>
parents:
346
diff
changeset
|
64 '--alt-y-grid', |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
65 '--imgformat', 'PNG'] \ |
335 | 66 + graph_args |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
67 if config.GRAPH_FONT: |
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
68 args += ['--font', 'DEFAULT:0:%s' % config.GRAPH_FONT] |
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
69 print>>sys.stderr, args |
335 | 70 rrdtool.graph(*args) |
71 return tempf.read() | |
72 | |
333 | 73 def sensor_update(sensor_id, measurements, first_real_time, time_step): |
74 try: | |
75 open(sensor_rrd_path(sensor_id)) | |
76 except IOError, e: | |
77 create_rrd(sensor_id) | |
78 | |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
79 print>>sys.stderr, sensor_id, measurements, first_real_time, time_step |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
80 |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
81 if measurements: |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
82 values = ['%d:%f' % p for p in |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
83 zip((first_real_time + time_step*t for t in xrange(len(measurements))), |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
84 measurements)] |
333 | 85 |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
86 rrdfile = sensor_rrd_path(sensor_id) |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
87 print>>sys.stderr, values |
346 | 88 # XXX what to do here when it fails... |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
89 rrdtool.update(rrdfile, *values) |
339
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
90 |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
91 # be paranoid |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
92 f = file(rrdfile) |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
93 os.fsync(f.fileno()) |
333 | 94 |
339
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
95 def record_debug(lines): |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
96 f = open('%s/debug.log' % config.DATA_PATH, 'a+') |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
97 f.write('===== %s =====\n' % time.strftime('%a, %d %b %Y %H:%M:%S')) |
339
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
98 f.writelines(('%s\n' % s for s in lines)) |
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
99 f.flush() |
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
100 return f |
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
101 |
333 | 102 def parse(lines): |
339
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
103 |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
104 debugf = record_debug(lines) |
339
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
105 |
333 | 106 entries = dict(l.split('=', 1) for l in lines) |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
107 if len(entries) != len(lines): |
333 | 108 raise Exception("Keys are not unique") |
109 | |
110 num_sensors = int(entries['sensors']) | |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
111 num_measurements = int(entries['measurements']) |
333 | 112 |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
113 sensors = [entries['sensor_id%d' % n] for n in xrange(num_sensors)] |
333 | 114 |
115 meas = [] | |
116 for s in sensors: | |
117 meas.append([]) | |
118 | |
334 | 119 def val_scale(v): |
120 # convert decidegrees to degrees | |
121 return 0.1 * v | |
122 | |
333 | 123 for n in xrange(num_measurements): |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
124 vals = [val_scale(int(x)) for x in entries["meas%d" % n].strip().split()] |
333 | 125 if len(vals) != num_sensors: |
126 raise Exception("Wrong number of sensors for measurement %d" % n) | |
127 # we make an array of values for each sensor | |
128 for s in xrange(num_sensors): | |
129 meas[s].append(vals[s]) | |
130 | |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
131 avr_now = float(entries['now']) |
333 | 132 avr_first_time = float(entries['first_time']) |
133 time_step = float(entries['time_step']) | |
134 | |
346 | 135 #sqlite |
136 # - time | |
137 # - voltage | |
138 # - boot time | |
139 | |
333 | 140 first_real_time = time.time() - (avr_now - avr_first_time) |
141 | |
142 for sensor_id, measurements in zip(sensors, meas): | |
346 | 143 # XXX sqlite add |
333 | 144 sensor_update(sensor_id, measurements, first_real_time, time_step) |
339
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
145 |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
146 debugf.write("Updated %d sensors\n" % len(sensors)) |
339
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
147 debugf.flush() |