Mercurial > templog
annotate web/log.py @ 381:83c83014e5e3
report raw ds18b20 values instead
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 03 Jul 2012 22:44:21 +0800 |
parents | fed6738be1ab |
children | 959e88c0bdfa |
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 |
373 | 13 import datetime |
381
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
379
diff
changeset
|
14 import struct |
335 | 15 from colorsys import hls_to_rgb |
333 | 16 |
334 | 17 import config |
333 | 18 |
19 def sensor_rrd_path(s): | |
334 | 20 return '%s/sensor_%s.rrd' % (config.DATA_PATH, s) |
333 | 21 |
335 | 22 # returns (path, sensor_name) tuples |
23 def all_sensors(): | |
24 return [(r, os.path.basename(r[:-4])) | |
25 for r in glob.glob('%s/*.rrd' % config.DATA_PATH)] | |
26 | |
333 | 27 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
|
28 # 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
|
29 # update with prior values straight away. |
367 | 30 if 'voltage' in sensor_id: |
369 | 31 args = [ |
32 '--step', '3600', | |
33 'DS:temp:GAUGE:7200:1:10', | |
34 'RRA:AVERAGE:0.5:1:87600'] | |
367 | 35 else: |
369 | 36 args = [ |
37 '--step', '300', | |
38 'DS:temp:GAUGE:600:-10:100', | |
367 | 39 'RRA:AVERAGE:0.5:1:1051200'] |
333 | 40 |
367 | 41 rrdtool.create(sensor_rrd_path(sensor_id), |
369 | 42 '--start', 'now-60d', |
367 | 43 *args) |
335 | 44 |
45 # stolen from viewmtn, stolen from monotone-viz | |
46 def colour_from_string(str): | |
47 def f(off): | |
48 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
|
49 hashval = hashlib.sha1(str).digest() |
335 | 50 hue = f(5) |
51 li = f(1) * 0.15 + 0.55 | |
52 sat = f(2) * 0.5 + .5 | |
53 return ''.join(["%.2x" % int(x * 256) for x in hls_to_rgb(hue, li, sat)]) | |
54 | |
55 def graph_png(start, length): | |
56 rrds = all_sensors() | |
57 | |
58 graph_args = [] | |
367 | 59 have_volts = False |
335 | 60 for n, (rrdfile, sensor) in enumerate(rrds): |
367 | 61 if 'avrtemp' in sensor: |
62 continue | |
63 if 'voltage' in sensor: | |
64 have_volts = True | |
65 vname = 'scalevolts' | |
377
55710361804b
swap the left and right scales, kind of clunky
Matt Johnston <matt@ucc.asn.au>
parents:
375
diff
changeset
|
66 graph_args.append('DEF:%(vname)s=%(rrdfile)s:temp:AVERAGE:step=3600' % locals()) |
367 | 67 else: |
68 vname = 'temp%d' % n | |
377
55710361804b
swap the left and right scales, kind of clunky
Matt Johnston <matt@ucc.asn.au>
parents:
375
diff
changeset
|
69 graph_args.append('DEF:raw%(vname)s=%(rrdfile)s:temp:AVERAGE' % locals()) |
55710361804b
swap the left and right scales, kind of clunky
Matt Johnston <matt@ucc.asn.au>
parents:
375
diff
changeset
|
70 graph_args.append('CDEF:%(vname)s=raw%(vname)s,0.1,*,2,+' % locals()) |
335 | 71 width = config.LINE_WIDTH |
72 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
|
73 colour = config.SENSOR_COLOURS.get(legend, colour_from_string(sensor)) |
335 | 74 graph_args.append('LINE%(width)f:%(vname)s#%(colour)s:%(legend)s' % locals()) |
75 | |
373 | 76 end = int(start+length) |
77 start = int(start) | |
78 | |
335 | 79 tempf = tempfile.NamedTemporaryFile() |
373 | 80 dateformat = '%H:%M:%S %Y-%m-%d' |
81 watermark = ("Now %s\t" | |
82 "Start %s\t" | |
83 "End %s" % ( | |
84 datetime.datetime.now().strftime(dateformat), | |
85 datetime.datetime.fromtimestamp(start).strftime(dateformat), | |
86 datetime.datetime.fromtimestamp(end).strftime(dateformat) )) | |
87 | |
88 args = [tempf.name, '-s', str(start), | |
89 '-e', str(end), | |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
90 '-w', str(config.GRAPH_WIDTH), |
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
91 '-h', str(config.GRAPH_HEIGHT), |
335 | 92 '--slope-mode', |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
93 '--border', '0', |
379
fed6738be1ab
Get rid of axes labels, tidy html
Matt Johnston <matt@ucc.asn.au>
parents:
377
diff
changeset
|
94 # '--vertical-label', 'Voltage', |
377
55710361804b
swap the left and right scales, kind of clunky
Matt Johnston <matt@ucc.asn.au>
parents:
375
diff
changeset
|
95 '--y-grid', '0.1:1', |
55710361804b
swap the left and right scales, kind of clunky
Matt Johnston <matt@ucc.asn.au>
parents:
375
diff
changeset
|
96 '--dynamic-labels', |
362 | 97 '--grid-dash', '1:0', |
98 '--color', 'GRID#00000000', | |
99 '--color', 'MGRID#aaaaaa', | |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
100 '--color', 'BACK#ffffff', |
373 | 101 '--disable-rrdtool-tag', |
102 '--watermark', watermark, | |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
103 '--imgformat', 'PNG'] \ |
335 | 104 + graph_args |
373 | 105 args += ['--font', 'DEFAULT:12:%s' % config.GRAPH_FONT] |
106 args += ['--font', 'WATERMARK:10:%s' % config.GRAPH_FONT] | |
367 | 107 if have_volts: |
377
55710361804b
swap the left and right scales, kind of clunky
Matt Johnston <matt@ucc.asn.au>
parents:
375
diff
changeset
|
108 args += ['--right-axis', '10:-20', # matches the scalevolts CDEF above |
379
fed6738be1ab
Get rid of axes labels, tidy html
Matt Johnston <matt@ucc.asn.au>
parents:
377
diff
changeset
|
109 '--right-axis-format', '%.0lf', |
fed6738be1ab
Get rid of axes labels, tidy html
Matt Johnston <matt@ucc.asn.au>
parents:
377
diff
changeset
|
110 # '--right-axis-label', 'Temperature' |
fed6738be1ab
Get rid of axes labels, tidy html
Matt Johnston <matt@ucc.asn.au>
parents:
377
diff
changeset
|
111 ] |
367 | 112 |
335 | 113 rrdtool.graph(*args) |
114 return tempf.read() | |
115 | |
333 | 116 def sensor_update(sensor_id, measurements, first_real_time, time_step): |
117 try: | |
118 open(sensor_rrd_path(sensor_id)) | |
119 except IOError, e: | |
120 create_rrd(sensor_id) | |
121 | |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
122 if measurements: |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
123 values = ['%d:%f' % p for p in |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
124 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
|
125 measurements)] |
333 | 126 |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
127 rrdfile = sensor_rrd_path(sensor_id) |
346 | 128 # 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
|
129 for v in values: |
a1aa4176ca2c
update values one at a time, ignore failure
Matt Johnston <matt@ucc.asn.au>
parents:
351
diff
changeset
|
130 try: |
a1aa4176ca2c
update values one at a time, ignore failure
Matt Johnston <matt@ucc.asn.au>
parents:
351
diff
changeset
|
131 rrdtool.update(rrdfile, v) |
369 | 132 except rrdtool.error, e: |
355
a1aa4176ca2c
update values one at a time, ignore failure
Matt Johnston <matt@ucc.asn.au>
parents:
351
diff
changeset
|
133 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
|
134 traceback.print_exc(file=sys.stderr) |
339
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
135 |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
136 # be paranoid |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
137 f = file(rrdfile) |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
138 os.fsync(f.fileno()) |
333 | 139 |
339
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
140 def record_debug(lines): |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
141 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
|
142 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
|
143 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
|
144 f.flush() |
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
145 return f |
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
146 |
381
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
379
diff
changeset
|
147 def convert_ds18b20_12bit(reading): |
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
379
diff
changeset
|
148 value = struct.unpack('>h', binascii.unhexlify(reading))[0] |
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
379
diff
changeset
|
149 return value * 0.0625 |
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
379
diff
changeset
|
150 |
333 | 151 def parse(lines): |
339
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
152 |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
153 debugf = record_debug(lines) |
339
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
338
diff
changeset
|
154 |
333 | 155 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
|
156 if len(entries) != len(lines): |
333 | 157 raise Exception("Keys are not unique") |
158 | |
159 num_sensors = int(entries['sensors']) | |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
160 num_measurements = int(entries['measurements']) |
333 | 161 |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
162 sensors = [entries['sensor_id%d' % n] for n in xrange(num_sensors)] |
333 | 163 |
164 meas = [] | |
165 for s in sensors: | |
166 meas.append([]) | |
167 | |
168 for n in xrange(num_measurements): | |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
169 vals = [val_scale(int(x)) for x in entries["meas%d" % n].strip().split()] |
333 | 170 if len(vals) != num_sensors: |
171 raise Exception("Wrong number of sensors for measurement %d" % n) | |
172 # we make an array of values for each sensor | |
173 for s in xrange(num_sensors): | |
174 meas[s].append(vals[s]) | |
175 | |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
176 avr_now = float(entries['now']) |
333 | 177 avr_first_time = float(entries['first_time']) |
178 time_step = float(entries['time_step']) | |
179 | |
367 | 180 if 'avrtemp' in entries: |
181 avrtemp = val_scale(int(entries['avrtemp'])) | |
182 sensor_update('avrtemp', [avrtemp], time.time(), 1) | |
183 | |
184 if 'voltage' in entries: | |
185 voltage = 0.001 * int(entries['voltage']) | |
186 sensor_update('voltage', [voltage], time.time(), 1) | |
187 | |
346 | 188 #sqlite |
189 # - time | |
190 # - voltage | |
191 # - boot time | |
192 | |
333 | 193 first_real_time = time.time() - (avr_now - avr_first_time) |
194 | |
195 for sensor_id, measurements in zip(sensors, meas): | |
346 | 196 # XXX sqlite add |
333 | 197 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
|
198 |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
199 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
|
200 debugf.flush() |