Mercurial > templog
annotate web/log.py @ 36:a670a67ba489
- decrease measurement interval, measure at start
- fix integer sizes or format strings
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sat, 16 Jun 2012 09:07:38 +0800 |
parents | 024f5571df8c |
children | 8da0fdadc8d7 |
rev | line source |
---|---|
27 | 1 import rrdtool |
2 import os | |
29 | 3 import os.path |
27 | 4 import sys |
29 | 5 import glob |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
6 import hashlib |
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
7 import tempfile |
29 | 8 from colorsys import hls_to_rgb |
27 | 9 |
28 | 10 import config |
27 | 11 |
12 def sensor_rrd_path(s): | |
28 | 13 return '%s/sensor_%s.rrd' % (config.DATA_PATH, s) |
27 | 14 |
29 | 15 # returns (path, sensor_name) tuples |
16 def all_sensors(): | |
17 return [(r, os.path.basename(r[:-4])) | |
18 for r in glob.glob('%s/*.rrd' % config.DATA_PATH)] | |
19 | |
27 | 20 def create_rrd(sensor_id): |
21 rrdtool.create(sensor_rrd_path(sensor_id), '-s', '300', | |
22 'DS:temp:GAUGE:600:-10:100', | |
23 'RRA:AVERAGE:0.5:1:1051200') | |
24 | |
29 | 25 |
26 # stolen from viewmtn, stolen from monotone-viz | |
27 def colour_from_string(str): | |
28 def f(off): | |
29 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
|
30 hashval = hashlib.sha1(str).digest() |
29 | 31 hue = f(5) |
32 li = f(1) * 0.15 + 0.55 | |
33 sat = f(2) * 0.5 + .5 | |
34 return ''.join(["%.2x" % int(x * 256) for x in hls_to_rgb(hue, li, sat)]) | |
35 | |
36 def graph_png(start, length): | |
37 rrds = all_sensors() | |
38 | |
39 graph_args = [] | |
40 for n, (rrdfile, sensor) in enumerate(rrds): | |
41 vname = 'temp%d' % n | |
42 graph_args.append('DEF:%(vname)s=%(rrdfile)s:temp:AVERAGE' % locals()) | |
43 width = config.LINE_WIDTH | |
44 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
|
45 colour = config.SENSOR_COLOURS.get(legend, colour_from_string(sensor)) |
29 | 46 graph_args.append('LINE%(width)f:%(vname)s#%(colour)s:%(legend)s' % locals()) |
47 | |
48 tempf = tempfile.NamedTemporaryFile() | |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
49 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
|
50 '-e', str(int(start+length)), |
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
51 '-w', str(config.GRAPH_WIDTH), |
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
52 '-h', str(config.GRAPH_HEIGHT), |
29 | 53 '--slope-mode', |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
54 '--border', '0', |
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
55 '--color', 'BACK#ffffff', |
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
56 '--imgformat', 'PNG'] \ |
29 | 57 + graph_args |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
58 if config.GRAPH_FONT: |
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
59 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
|
60 print>>sys.stderr, args |
29 | 61 rrdtool.graph(*args) |
62 return tempf.read() | |
63 | |
27 | 64 def sensor_update(sensor_id, measurements, first_real_time, time_step): |
65 try: | |
66 open(sensor_rrd_path(sensor_id)) | |
67 except IOError, e: | |
68 create_rrd(sensor_id) | |
69 | |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
70 values = ['%f:%f' % p for p in |
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
71 zip((first_real_time + time_step*t for t in xrange(len(measurements))), |
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
72 measurements)] |
27 | 73 |
32 | 74 rrdfile = sensor_rrd_path(sensor_id) |
75 rrdtool.update(rrdfile, *values) | |
33 | 76 |
77 # be paranois | |
32 | 78 f = file(rrdfile) |
79 os.fsync(f.fileno()) | |
27 | 80 |
33 | 81 def record_debug(lines): |
82 f = open('%s/debug.log', config.DATA_PATH, 'a+') | |
83 f.write('===== %s =====' % time.strftime('%a, %d %b %Y %H:%M:%S') | |
84 f.writelines(('%s\n' % s for s in lines)) | |
85 f.flush() | |
86 return f | |
87 | |
27 | 88 def parse(lines): |
33 | 89 |
90 debugf = record_debug(lines): | |
91 | |
27 | 92 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
|
93 if len(entries) != len(lines): |
27 | 94 raise Exception("Keys are not unique") |
95 | |
96 num_sensors = int(entries['sensors']) | |
97 num_measurements = int(entries['sensors']) | |
98 | |
99 sensor_ids = [entries['sensor_id%d' % n] for n in xrange(num_sensors)] | |
100 | |
101 meas = [] | |
102 for s in sensors: | |
103 meas.append([]) | |
104 | |
28 | 105 def val_scale(v): |
106 # convert decidegrees to degrees | |
107 return 0.1 * v | |
108 | |
27 | 109 for n in xrange(num_measurements): |
28 | 110 vals = [val_scale(int(entries["meas%d" % n].strip().split()))] |
27 | 111 if len(vals) != num_sensors: |
112 raise Exception("Wrong number of sensors for measurement %d" % n) | |
113 # we make an array of values for each sensor | |
114 for s in xrange(num_sensors): | |
115 meas[s].append(vals[s]) | |
116 | |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
117 avr_now = float(entries['now']) |
27 | 118 avr_first_time = float(entries['first_time']) |
119 time_step = float(entries['time_step']) | |
120 | |
121 first_real_time = time.time() - (avr_now - avr_first_time) | |
122 | |
123 for sensor_id, measurements in zip(sensors, meas): | |
124 sensor_update(sensor_id, measurements, first_real_time, time_step) | |
33 | 125 |
126 debugf.write("Updated %d sensors\n" % len(sensors) | |
127 debugf.flush() |