source: de.wigbels.ruby/hothotread/draw_graphs.sh @ 53aed1c

Last change on this file since 53aed1c was 53aed1c, checked in by Norbert Wigbels <njw@…>, 9 years ago

Gaszaehler mit RRDTool-Auswertung

  • Property mode set to 100755
File size: 1.1 KB
Line 
1#!/bin/bash
2#DEF:temps9=../hotcoldrain/weather.rrd:temps9:AVERAGE \
3#LINE1:temps9#4e9a06:"Temperatur aussen\n" \
4
5rrdtool graph web/gas_1tag.png \
6-w 800 -h 500 \
7-s 'now - 1 day' -e 'now' \
8--title "Gasverbrauch im Tagesverlauf" \
9--font TITLE:12 --vertical-label="Liter/Stunde" \
10DEF:gas=gas.rrd:gas:AVERAGE \
11CDEF:gash=gas,120,* \
12VDEF:gastotal=gas,TOTAL \
13GPRINT:gastotal:"Total %6.0lf m3 Gas" \
14LINE2:gash#c17d11:"Gasverbrauch"
15
16rrdtool graph web/gas_1woche.png \
17-w 800 -h 500 \
18-s 'now - 1 week' -e 'now' \
19--title "Gasverbrauch im Wochenverlauf" \
20--font TITLE:12 --vertical-label="Liter/Tag" \
21DEF:gas=gas.rrd:gas:AVERAGE \
22CDEF:gasd=gas,2880,* \
23VDEF:gastotal=gas,TOTAL \
24GPRINT:gastotal:"Total %6.0lf m3 Gas" \
25LINE2:gasd#c17d11:"Gasverbrauch/Tag"
26
27rrdtool graph web/gas_1monat.png \
28-w 800 -h 500 \
29-s 'now - 1 month' -e 'now' \
30--title "Gasverbrauch im Monatsverlauf" \
31--font TITLE:12 --vertical-label="Liter/Tag" \
32DEF:gas=gas.rrd:gas:AVERAGE \
33CDEF:gasd=gas,2880,* \
34VDEF:gastotal=gas,TOTAL \
35GPRINT:gastotal:"Total %6.0lf m3 Gas" \
36LINE2:gasd#c17d11:"Gasverbrauch/Tag"
37
Note: See TracBrowser for help on using the repository browser.