Mercurial > templog
annotate web/log.py @ 162:d73077e8cd67
Add daemon mode with locking, add "disabled" parameter
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Fri, 11 Jan 2013 23:41:56 +0800 |
parents | 683cfd134f6a |
children | 632d436d227b |
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 |
159
683cfd134f6a
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
146
diff
changeset
|
17 import json |
29 | 18 from colorsys import hls_to_rgb |
27 | 19 |
28 | 20 import config |
27 | 21 |
22 def sensor_rrd_path(s): | |
159
683cfd134f6a
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
146
diff
changeset
|
23 return '%s/sensor_%s.rrd' % (config.DATA_PATH, str(s)) |
27 | 24 |
29 | 25 # returns (path, sensor_name) tuples |
26 def all_sensors(): | |
27 return [(r, os.path.basename(r[:-4])) | |
28 for r in glob.glob('%s/*.rrd' % config.DATA_PATH)] | |
29 | |
27 | 30 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
|
31 # 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
|
32 # update with prior values straight away. |
61 | 33 if 'voltage' in sensor_id: |
63 | 34 args = [ |
35 '--step', '3600', | |
36 'DS:temp:GAUGE:7200:1:10', | |
37 'RRA:AVERAGE:0.5:1:87600'] | |
126
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
38 elif 'fridge_on' in sensor_id: |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
39 args = [ |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
40 '--step', '300', |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
41 'DS:temp:GAUGE:600:-100:500', |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
42 'RRA:LAST:0.5:1:1051200'] |
61 | 43 else: |
63 | 44 args = [ |
45 '--step', '300', | |
88
6f4497a448e8
increase temperature logging range
Matt Johnston <matt@ucc.asn.au>
parents:
78
diff
changeset
|
46 'DS:temp:GAUGE:600:-100:500', |
61 | 47 'RRA:AVERAGE:0.5:1:1051200'] |
27 | 48 |
159
683cfd134f6a
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
146
diff
changeset
|
49 print>>sys.stderr, sensor_rrd_path(sensor_id) |
683cfd134f6a
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
146
diff
changeset
|
50 |
61 | 51 rrdtool.create(sensor_rrd_path(sensor_id), |
63 | 52 '--start', 'now-60d', |
61 | 53 *args) |
29 | 54 |
55 # stolen from viewmtn, stolen from monotone-viz | |
56 def colour_from_string(str): | |
57 def f(off): | |
58 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
|
59 hashval = hashlib.sha1(str).digest() |
29 | 60 hue = f(5) |
61 li = f(1) * 0.15 + 0.55 | |
62 sat = f(2) * 0.5 + .5 | |
63 return ''.join(["%.2x" % int(x * 256) for x in hls_to_rgb(hue, li, sat)]) | |
64 | |
65 def graph_png(start, length): | |
104
7f3fc0980df1
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
66 os.environ['MATT_PNG_BODGE_COMPRESS'] = '4' |
7f3fc0980df1
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
67 os.environ['MATT_PNG_BODGE_FILTER'] = 'paeth' |
29 | 68 rrds = all_sensors() |
69 | |
70 graph_args = [] | |
61 | 71 have_volts = False |
29 | 72 for n, (rrdfile, sensor) in enumerate(rrds): |
126
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
73 unit = None |
61 | 74 if 'avrtemp' in sensor: |
75 continue | |
76 if 'voltage' in sensor: | |
77 have_volts = True | |
78 vname = 'scalevolts' | |
71
7d243ba2dd39
swap the left and right scales, kind of clunky
Matt Johnston <matt@ucc.asn.au>
parents:
69
diff
changeset
|
79 graph_args.append('DEF:%(vname)s=%(rrdfile)s:temp:AVERAGE:step=3600' % locals()) |
78 | 80 unit = 'V' |
126
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
81 elif 'fridge_on' in sensor: |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
82 vname = 'fridge_on' |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
83 graph_args.append('DEF:raw%(vname)s=%(rrdfile)s:temp:LAST' % locals()) |
131 | 84 graph_args.append('CDEF:%(vname)s=raw%(vname)s,-0.2,*,3,+' % locals()) |
61 | 85 else: |
86 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
|
87 graph_args.append('DEF:raw%(vname)s=%(rrdfile)s:temp:AVERAGE' % locals()) |
101
fd8482365489
limit temps to 35º on graph
Matt Johnston <matt@ucc.asn.au>
parents:
99
diff
changeset
|
88 # limit max temp to 50 |
fd8482365489
limit temps to 35º on graph
Matt Johnston <matt@ucc.asn.au>
parents:
99
diff
changeset
|
89 graph_args.append('CDEF:%(vname)s=raw%(vname)s,35,GT,UNKN,raw%(vname)s,0.1,*,2,+,IF' % locals()) |
78 | 90 unit = '<span face="Liberation Serif">º</span>C' |
91 | |
126
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
92 format_last_value = None |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
93 if unit: |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
94 try: |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
95 last_value = float(rrdtool.info(rrdfile)['ds[temp].last_ds']) |
137
d36fe81077cc
strip multiple-of-ten temperatures correctly
Matt Johnston <matt@ucc.asn.au>
parents:
131
diff
changeset
|
96 format_last_value = ('%f' % last_value).rstrip('0').rstrip('.') + unit |
126
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
97 except ValueError: |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
98 pass |
29 | 99 width = config.LINE_WIDTH |
100 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
|
101 colour = config.SENSOR_COLOURS.get(legend, colour_from_string(sensor)) |
126
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
102 if format_last_value: |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
103 print_legend = '%s (%s)' % (legend, format_last_value) |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
104 else: |
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
105 print_legend = legend |
78 | 106 graph_args.append('LINE%(width)f:%(vname)s#%(colour)s:%(print_legend)s' % locals()) |
29 | 107 |
67 | 108 end = int(start+length) |
109 start = int(start) | |
110 | |
29 | 111 tempf = tempfile.NamedTemporaryFile() |
67 | 112 dateformat = '%H:%M:%S %Y-%m-%d' |
113 watermark = ("Now %s\t" | |
114 "Start %s\t" | |
115 "End %s" % ( | |
116 datetime.datetime.now().strftime(dateformat), | |
117 datetime.datetime.fromtimestamp(start).strftime(dateformat), | |
118 datetime.datetime.fromtimestamp(end).strftime(dateformat) )) | |
119 | |
120 args = [tempf.name, '-s', str(start), | |
121 '-e', str(end), | |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
122 '-w', str(config.GRAPH_WIDTH), |
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
123 '-h', str(config.GRAPH_HEIGHT), |
29 | 124 '--slope-mode', |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
125 '--border', '0', |
73
0a8639039453
Get rid of axes labels, tidy html
Matt Johnston <matt@ucc.asn.au>
parents:
71
diff
changeset
|
126 # '--vertical-label', 'Voltage', |
71
7d243ba2dd39
swap the left and right scales, kind of clunky
Matt Johnston <matt@ucc.asn.au>
parents:
69
diff
changeset
|
127 '--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
|
128 '--dynamic-labels', |
56 | 129 '--grid-dash', '1:0', |
77 | 130 '--zoom', str(config.ZOOM), |
56 | 131 '--color', 'GRID#00000000', |
132 '--color', 'MGRID#aaaaaa', | |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
133 '--color', 'BACK#ffffff', |
67 | 134 '--disable-rrdtool-tag', |
78 | 135 '--pango-markup', |
67 | 136 '--watermark', watermark, |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
137 '--imgformat', 'PNG'] \ |
29 | 138 + graph_args |
67 | 139 args += ['--font', 'DEFAULT:12:%s' % config.GRAPH_FONT] |
140 args += ['--font', 'WATERMARK:10:%s' % config.GRAPH_FONT] | |
61 | 141 if have_volts: |
71
7d243ba2dd39
swap the left and right scales, kind of clunky
Matt Johnston <matt@ucc.asn.au>
parents:
69
diff
changeset
|
142 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
|
143 '--right-axis-format', '%.0lf', |
0a8639039453
Get rid of axes labels, tidy html
Matt Johnston <matt@ucc.asn.au>
parents:
71
diff
changeset
|
144 # '--right-axis-label', 'Temperature' |
0a8639039453
Get rid of axes labels, tidy html
Matt Johnston <matt@ucc.asn.au>
parents:
71
diff
changeset
|
145 ] |
61 | 146 |
104
7f3fc0980df1
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
147 print>>sys.stderr, ' '.join("'%s'" % s for s in args) |
29 | 148 rrdtool.graph(*args) |
104
7f3fc0980df1
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
149 #return tempf |
29 | 150 return tempf.read() |
151 | |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
152 def validate_value(m): |
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
153 if m == 85: |
159
683cfd134f6a
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
146
diff
changeset
|
154 return 'U' |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
155 else: |
159
683cfd134f6a
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
146
diff
changeset
|
156 return '%f' % m |
125 | 157 |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
158 def sensor_update(sensor_id, measurements): |
27 | 159 try: |
160 open(sensor_rrd_path(sensor_id)) | |
161 except IOError, e: | |
162 create_rrd(sensor_id) | |
163 | |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
164 if measurements: |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
165 values = ['%d:%s' % (t, validate_value(m)) for (t, m) in measurements] |
27 | 166 |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
167 rrdfile = sensor_rrd_path(sensor_id) |
40 | 168 # 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
|
169 for v in values: |
206294a354a7
update values one at a time, ignore failure
Matt Johnston <matt@ucc.asn.au>
parents:
45
diff
changeset
|
170 try: |
206294a354a7
update values one at a time, ignore failure
Matt Johnston <matt@ucc.asn.au>
parents:
45
diff
changeset
|
171 rrdtool.update(rrdfile, v) |
63 | 172 except rrdtool.error, e: |
104
7f3fc0980df1
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
173 print>>sys.stderr, "Bad rrdtool update '%s': %s" % (v, str(e)) |
49
206294a354a7
update values one at a time, ignore failure
Matt Johnston <matt@ucc.asn.au>
parents:
45
diff
changeset
|
174 traceback.print_exc(file=sys.stderr) |
33 | 175 |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
176 # be paranoid |
104
7f3fc0980df1
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
177 #f = file(rrdfile) |
7f3fc0980df1
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
178 #os.fsync(f.fileno()) |
27 | 179 |
103 | 180 def debug_file(mode='r'): |
181 return open('%s/debug.log' % config.DATA_PATH, mode) | |
182 | |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
183 def record_debug(params): |
103 | 184 f = debug_file('a+') |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
185 f.write('===== %s =====\n' % time.strftime('%a, %d %b %Y %H:%M:%S')) |
159
683cfd134f6a
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
146
diff
changeset
|
186 json.dump(params, f, sort_keys=True, indent=4) |
33 | 187 f.flush() |
188 return f | |
189 | |
103 | 190 def tail_debug_log(): |
191 f = debug_file() | |
192 f.seek(0, 2) | |
193 size = f.tell() | |
194 f.seek(max(0, size-30000)) | |
195 return '\n'.join(l.strip() for l in f.readlines()[-400:]) | |
196 | |
75
ca08442635ca
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
73
diff
changeset
|
197 def convert_ds18b20_12bit(reading): |
ca08442635ca
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
73
diff
changeset
|
198 value = struct.unpack('>h', binascii.unhexlify(reading))[0] |
ca08442635ca
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
73
diff
changeset
|
199 return value * 0.0625 |
ca08442635ca
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
73
diff
changeset
|
200 |
94 | 201 def time_rem(name, entries): |
202 val_ticks = int(entries[name]) | |
95 | 203 val_rem = int(entries['%s_rem' % name]) |
99
1a88bb989afb
fix off-by-one in remainder code
Matt Johnston <matt@ucc.asn.au>
parents:
95
diff
changeset
|
204 tick_wake = int(entries['tick_wake']) + 1 |
94 | 205 tick_secs = int(entries['tick_secs']) |
206 return val_ticks + float(val_rem) * tick_secs / tick_wake | |
207 | |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
208 def parse(params): |
104
7f3fc0980df1
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
209 |
7f3fc0980df1
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
210 start_time = time.time() |
33 | 211 |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
212 debugf = record_debug(params) |
27 | 213 |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
214 remote_now = params['now'] |
27 | 215 |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
216 time_diff = start_time - remote_now |
27 | 217 |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
218 # readings is [ ({sensorname: value, ...}, time), ... ] |
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
219 readings = params['readings'] |
27 | 220 |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
221 # measurements is {sensorname: [(time, value), ...], ...} |
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
222 measurements = {} |
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
223 for rs, t in readings: |
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
224 real_t = t + time_diff |
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
225 for s, v in rs.iteritems(): |
159
683cfd134f6a
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
146
diff
changeset
|
226 measurements.setdefault(s, []).append((real_t, v)) |
61 | 227 |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
228 # one-off measurements here |
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
229 measurements['fridge_on'] = [ (time.time(), params['fridge_on']) ] |
159
683cfd134f6a
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
146
diff
changeset
|
230 measurements['fridge_setpoint'] = [ (time.time(), params['fridge_setpoint']) ] |
126
6a9419ac8f77
ui tweaks, add fridge values
Matt Johnston <matt@ucc.asn.au>
parents:
125
diff
changeset
|
231 |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
232 for s, vs in measurements.iteritems(): |
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
137
diff
changeset
|
233 sensor_update(s, vs) |
33 | 234 |
104
7f3fc0980df1
- few more web tweaks. don't fsync, it's slow.
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
235 timedelta = time.time() - start_time |
159
683cfd134f6a
Fix the updated json web code to work
Matt Johnston <matt@ucc.asn.au>
parents:
146
diff
changeset
|
236 debugf.write("Updated sensors in %.2f secs\n" % timedelta) |
33 | 237 debugf.flush() |