You have to install the python3 bindings for rrdtool:
$ sudo apt-get install python3-dev librrd-dev $ cd lib/3rd/rrdtool $ sudo python3 setup.py install
The rrd plugin and the sqlite plugin can not be used together. Some pros and cons:
RRD + a stable, reliable tool + is used in a many data logging and graphing tools - slow moving development - only few new features on the roadmap
SQLite + part of python, no additional installation necessary + accurate logging of changing times + more analysis functionality
[rrd] class_name = RRD class_path = plugins.rrd # step = 300 # rrd_dir = /usr/smarthome/var/rrd/
step sets the cycle time how often entries will be updated. rrd_dir specify the rrd storage location.
To active rrd logging (for an item) simply set this attribute to yes. If you set this attribute to init, SmartHome.py tries to set the item to the last known value (like cache = yes).
Set this item attribute to log the minimum as well. Default is no.
Set this item attribute to log the maximum as well. Default is no.
Set the type of data source. Default ist gauge. * gauge - should be used for things like temperatures. * counter - should be used for continuous incrementing counters like the Powermeter (kWh), watercounter (m³), pellets (kg).
[outside] name = Outside [[temperature]] name = Temperatur type = num rrd = init rrd_min = yes rrd_max = yes [office] name = Büro [[temperature]] name = Temperatur type = num rrd = yes
This plugin adds one item method to every item which has rrd enabled.
This method returns you a value for the specified function and timeframe.
Supported functions are:
For the timeframe you have to specify a start point and a optional end point. By default it ends ‘now’. The time point could be specified with <number><interval>, where interval could be:
e.g.
sh.outside.temperature.db('min', '1d') # returns the minimum temperature within the last day sh.outside.temperature.db('avg', '2w', '1w') # returns the average temperature of the week before last week