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