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