Mercurial > templog
annotate web/log.py @ 94:229b740a607f
use the remainder of times
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Mon, 16 Jul 2012 21:50:39 +0800 |
parents | 6f4497a448e8 |
children | fd9cfa6829fd |
rev | line source |
---|---|
78 | 1 # -*- coding: utf-8 -*- |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
2 #:vim:et:ts=4:sts=4:sw=4: |
27 | 3 import rrdtool |
4 import os | |
29 | 5 import os.path |
27 | 6 import sys |
29 | 7 import glob |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
8 import hashlib |
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
9 import tempfile |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
10 import time |
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
11 import syslog |
44 | 12 import sqlite3 |
49
206294a354a7
update values one at a time, ignore failure
Matt Johnston <matt@ucc.asn.au>
parents:
45
diff
changeset
|
13 import traceback |
67 | 14 import datetime |
75
ca08442635ca
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
73
diff
changeset
|
15 import struct |
77 | 16 import binascii |
29 | 17 from colorsys import hls_to_rgb |
27 | 18 |
28 | 19 import config |
27 | 20 |
21 def sensor_rrd_path(s): | |
28 | 22 return '%s/sensor_%s.rrd' % (config.DATA_PATH, s) |
27 | 23 |
29 | 24 # returns (path, sensor_name) tuples |
25 def all_sensors(): | |
26 return [(r, os.path.basename(r[:-4])) | |
27 for r in glob.glob('%s/*.rrd' % config.DATA_PATH)] | |
28 | |
27 | 29 def create_rrd(sensor_id): |
43
ea99aae87884
Create with a start date so that it works
Matt Johnston <matt@ucc.asn.au>
parents:
40
diff
changeset
|
30 # start date of 10 seconds into 1970 is used so that we can |
ea99aae87884
Create with a start date so that it works
Matt Johnston <matt@ucc.asn.au>
parents:
40
diff
changeset
|
31 # update with prior values straight away. |
61 | 32 if 'voltage' in sensor_id: |
63 | 33 args = [ |
34 '--step', '3600', | |
35 'DS:temp:GAUGE:7200:1:10', | |
36 'RRA:AVERAGE:0.5:1:87600'] | |
61 | 37 else: |
63 | 38 args = [ |
39 '--step', '300', | |
88
6f4497a448e8
increase temperature logging range
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
40 'DS:temp:GAUGE:600:-100:500', |
61 | 41 'RRA:AVERAGE:0.5:1:1051200'] |
27 | 42 |
61 | 43 rrdtool.create(sensor_rrd_path(sensor_id), |
63 | 44 '--start', 'now-60d', |
61 | 45 *args) |
29 | 46 |
47 # stolen from viewmtn, stolen from monotone-viz | |
48 def colour_from_string(str): | |
49 def f(off): | |
50 return ord(hashval[off]) / 256.0 | |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
51 hashval = hashlib.sha1(str).digest() |
29 | 52 hue = f(5) |
53 li = f(1) * 0.15 + 0.55 | |
54 sat = f(2) * 0.5 + .5 | |
55 return ''.join(["%.2x" % int(x * 256) for x in hls_to_rgb(hue, li, sat)]) | |
56 | |
57 def graph_png(start, length): | |
58 rrds = all_sensors() | |
59 | |
60 graph_args = [] | |
61 | 61 have_volts = False |
29 | 62 for n, (rrdfile, sensor) in enumerate(rrds): |
61 | 63 if 'avrtemp' in sensor: |
64 continue | |
65 if 'voltage' in sensor: | |
66 have_volts = True | |
67 vname = 'scalevolts' | |
71
7d243ba2dd39
swap the left and right scales, kind of clunky
Matt Johnston <matt@ucc.asn.au>
parents:
69
diff
changeset
|
68 graph_args.append('DEF:%(vname)s=%(rrdfile)s:temp:AVERAGE:step=3600' % locals()) |
78 | 69 unit = 'V' |
61 | 70 else: |
71 vname = 'temp%d' % n | |
71
7d243ba2dd39
swap the left and right scales, kind of clunky
Matt Johnston <matt@ucc.asn.au>
parents:
69
diff
changeset
|
72 graph_args.append('DEF:raw%(vname)s=%(rrdfile)s:temp:AVERAGE' % locals()) |
7d243ba2dd39
swap the left and right scales, kind of clunky
Matt Johnston <matt@ucc.asn.au>
parents:
69
diff
changeset
|
73 graph_args.append('CDEF:%(vname)s=raw%(vname)s,0.1,*,2,+' % locals()) |
78 | 74 unit = '<span face="Liberation Serif">ยบ</span>C' |
75 | |
76 last_value = float(rrdtool.info(rrdfile)['ds[temp].last_ds']) | |
29 | 77 width = config.LINE_WIDTH |
78 legend = config.SENSOR_NAMES.get(sensor, sensor) | |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
79 colour = config.SENSOR_COLOURS.get(legend, colour_from_string(sensor)) |
78 | 80 format_last_value = ('%f' % last_value).rstrip('0') + unit |
81 print_legend = '%s (%s)' % (legend, format_last_value) | |
82 graph_args.append('LINE%(width)f:%(vname)s#%(colour)s:%(print_legend)s' % locals()) | |
29 | 83 |
67 | 84 end = int(start+length) |
85 start = int(start) | |
86 | |
29 | 87 tempf = tempfile.NamedTemporaryFile() |
67 | 88 dateformat = '%H:%M:%S %Y-%m-%d' |
89 watermark = ("Now %s\t" | |
90 "Start %s\t" | |
91 "End %s" % ( | |
92 datetime.datetime.now().strftime(dateformat), | |
93 datetime.datetime.fromtimestamp(start).strftime(dateformat), | |
94 datetime.datetime.fromtimestamp(end).strftime(dateformat) )) | |
95 | |
96 args = [tempf.name, '-s', str(start), | |
97 '-e', str(end), | |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
98 '-w', str(config.GRAPH_WIDTH), |
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
99 '-h', str(config.GRAPH_HEIGHT), |
29 | 100 '--slope-mode', |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
101 '--border', '0', |
73
0a8639039453
Get rid of axes labels, tidy html
Matt Johnston <matt@ucc.asn.au>
parents:
71
diff
changeset
|
102 # '--vertical-label', 'Voltage', |
71
7d243ba2dd39
swap the left and right scales, kind of clunky
Matt Johnston <matt@ucc.asn.au>
parents:
69
diff
changeset
|
103 '--y-grid', '0.1:1', |
7d243ba2dd39
swap the left and right scales, kind of clunky
Matt Johnston <matt@ucc.asn.au>
parents:
69
diff
changeset
|
104 '--dynamic-labels', |
56 | 105 '--grid-dash', '1:0', |
77 | 106 '--zoom', str(config.ZOOM), |
56 | 107 '--color', 'GRID#00000000', |
108 '--color', 'MGRID#aaaaaa', | |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
109 '--color', 'BACK#ffffff', |
67 | 110 '--disable-rrdtool-tag', |
78 | 111 '--pango-markup', |
67 | 112 '--watermark', watermark, |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
113 '--imgformat', 'PNG'] \ |
29 | 114 + graph_args |
67 | 115 args += ['--font', 'DEFAULT:12:%s' % config.GRAPH_FONT] |
116 args += ['--font', 'WATERMARK:10:%s' % config.GRAPH_FONT] | |
61 | 117 if have_volts: |
71
7d243ba2dd39
swap the left and right scales, kind of clunky
Matt Johnston <matt@ucc.asn.au>
parents:
69
diff
changeset
|
118 args += ['--right-axis', '10:-20', # matches the scalevolts CDEF above |
73
0a8639039453
Get rid of axes labels, tidy html
Matt Johnston <matt@ucc.asn.au>
parents:
71
diff
changeset
|
119 '--right-axis-format', '%.0lf', |
0a8639039453
Get rid of axes labels, tidy html
Matt Johnston <matt@ucc.asn.au>
parents:
71
diff
changeset
|
120 # '--right-axis-label', 'Temperature' |
0a8639039453
Get rid of axes labels, tidy html
Matt Johnston <matt@ucc.asn.au>
parents:
71
diff
changeset
|
121 ] |
61 | 122 |
29 | 123 rrdtool.graph(*args) |
124 return tempf.read() | |
125 | |
27 | 126 def sensor_update(sensor_id, measurements, first_real_time, time_step): |
127 try: | |
128 open(sensor_rrd_path(sensor_id)) | |
129 except IOError, e: | |
130 create_rrd(sensor_id) | |
131 | |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
132 if measurements: |
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
133 values = ['%d:%f' % p for p in |
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
134 zip((first_real_time + time_step*t for t in xrange(len(measurements))), |
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
135 measurements)] |
27 | 136 |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
137 rrdfile = sensor_rrd_path(sensor_id) |
40 | 138 # XXX what to do here when it fails... |
49
206294a354a7
update values one at a time, ignore failure
Matt Johnston <matt@ucc.asn.au>
parents:
45
diff
changeset
|
139 for v in values: |
206294a354a7
update values one at a time, ignore failure
Matt Johnston <matt@ucc.asn.au>
parents:
45
diff
changeset
|
140 try: |
206294a354a7
update values one at a time, ignore failure
Matt Johnston <matt@ucc.asn.au>
parents:
45
diff
changeset
|
141 rrdtool.update(rrdfile, v) |
63 | 142 except rrdtool.error, e: |
49
206294a354a7
update values one at a time, ignore failure
Matt Johnston <matt@ucc.asn.au>
parents:
45
diff
changeset
|
143 print>>sys.stderr, "Bad rrdtool update '%s'" % v |
206294a354a7
update values one at a time, ignore failure
Matt Johnston <matt@ucc.asn.au>
parents:
45
diff
changeset
|
144 traceback.print_exc(file=sys.stderr) |
33 | 145 |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
146 # be paranoid |
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
147 f = file(rrdfile) |
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
148 os.fsync(f.fileno()) |
27 | 149 |
33 | 150 def record_debug(lines): |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
151 f = open('%s/debug.log' % config.DATA_PATH, 'a+') |
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
152 f.write('===== %s =====\n' % time.strftime('%a, %d %b %Y %H:%M:%S')) |
33 | 153 f.writelines(('%s\n' % s for s in lines)) |
154 f.flush() | |
155 return f | |
156 | |
75
ca08442635ca
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
73
diff
changeset
|
157 def convert_ds18b20_12bit(reading): |
ca08442635ca
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
73
diff
changeset
|
158 value = struct.unpack('>h', binascii.unhexlify(reading))[0] |
ca08442635ca
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
73
diff
changeset
|
159 return value * 0.0625 |
ca08442635ca
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
73
diff
changeset
|
160 |
94 | 161 def time_rem(name, entries): |
162 val_ticks = int(entries[name]) | |
163 val_rem = int(entries[name]) | |
164 tick_wake = int(entries['tick_wake']) | |
165 tick_secs = int(entries['tick_secs']) | |
166 return val_ticks + float(val_rem) * tick_secs / tick_wake | |
167 | |
27 | 168 def parse(lines): |
33 | 169 |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
170 debugf = record_debug(lines) |
33 | 171 |
27 | 172 entries = dict(l.split('=', 1) for l in lines) |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
173 if len(entries) != len(lines): |
27 | 174 raise Exception("Keys are not unique") |
175 | |
176 num_sensors = int(entries['sensors']) | |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
177 num_measurements = int(entries['measurements']) |
27 | 178 |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
179 sensors = [entries['sensor_id%d' % n] for n in xrange(num_sensors)] |
27 | 180 |
181 meas = [] | |
182 for s in sensors: | |
183 meas.append([]) | |
184 | |
185 for n in xrange(num_measurements): | |
77 | 186 vals = [convert_ds18b20_12bit(x) for x in entries["meas%d" % n].strip().split()] |
27 | 187 if len(vals) != num_sensors: |
188 raise Exception("Wrong number of sensors for measurement %d" % n) | |
189 # we make an array of values for each sensor | |
190 for s in xrange(num_sensors): | |
191 meas[s].append(vals[s]) | |
192 | |
94 | 193 avr_now = time_rem('now', entries) |
194 avr_first_time = time_rem('first_time', entries) | |
195 avr_comms_time = time_rem('comms_time', entries) | |
27 | 196 time_step = float(entries['time_step']) |
197 | |
94 | 198 debugf.write('now %f, comms_time %f, first_time %f, delta %f\n' % |
199 (avr_now, avr_comms_time, avr_first_time, avr_now - avr_comms_time)) | |
200 | |
61 | 201 if 'avrtemp' in entries: |
202 avrtemp = val_scale(int(entries['avrtemp'])) | |
203 sensor_update('avrtemp', [avrtemp], time.time(), 1) | |
204 | |
205 if 'voltage' in entries: | |
206 voltage = 0.001 * int(entries['voltage']) | |
207 sensor_update('voltage', [voltage], time.time(), 1) | |
208 | |
40 | 209 #sqlite |
210 # - time | |
211 # - voltage | |
212 # - boot time | |
213 | |
27 | 214 first_real_time = time.time() - (avr_now - avr_first_time) |
215 | |
216 for sensor_id, measurements in zip(sensors, meas): | |
40 | 217 # XXX sqlite add |
27 | 218 sensor_update(sensor_id, measurements, first_real_time, time_step) |
33 | 219 |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
220 debugf.write("Updated %d sensors\n" % len(sensors)) |
33 | 221 debugf.flush() |