![]() |
rrdtool problem - Printable Version +- Logic Machine Forum (https://forum.logicmachine.net) +-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1) +--- Forum: Scripting (https://forum.logicmachine.net/forumdisplay.php?fid=8) +--- Thread: rrdtool problem (/showthread.php?tid=671) |
rrdtool problem - baggins - 12.03.2017 Hi, As it is not possible to have a graph with more than one variable, I decided to make my own graphs with rrdtool. At first I was going to use another server that would collect data with remote xlm service, create the graph, put it on a webpage and display that graph in an iframe in LM. I had progressed up to the point of moving the graph to the web server when it occurred to me that the rrdtool package is available in LM! ![]() The new plan was then to create an rrd archive in LM, put the graph in the img directory and then use that image in my visualisation. What I did (this is in LM4 firmware 20160714): -create a directory /data/storage/rrd -create a rrd archive as follows: Code: create_rrd = "rrdtool create /data/storage/rrd/ventilatie.rrd --start N --step 300" .. -update the rrd with data: Code: -- get data All this went well. I then wanted to create a graph as follows: Code: rrdgraph = "rrdtool graph /data/storage/img/ventilatie.png DEF:T_i=/data/storage/rrd/ventilatie.rrd:T_intake:AVERAGE LINE1:T_i#ff0000:Invoer" This fails, with the os.execute statement returning 256. Obviously no graph is created. The manual states that the return code of os.execute is system dependent. I have no idea what values to expect on LM... On the other machine this worked without any problems. The only difference is the version of rrdtool: on LM this is 1.4.7 whereas on the other machine it is 1.6 What is going wrong here? Thanks. RE: rrdtool problem - admin - 13.03.2017 The built-in RRDtool does not have the graph option, it can only be used to store/retrieve data. RE: rrdtool problem - baggins - 13.03.2017 OK, mystery solved... ![]() Back to the original plan then, unless there is a more elegant solution? Thanks. RE: rrdtool problem - Thomas - 13.03.2017 Hi I don't know if it solves your problem but you can usemultiple trends. Below is my example of 1hr averages of brightness from 4 directions + max value. RE: rrdtool problem - baggins - 13.03.2017 I did look at the multiple trends possibility, but I saw two problems with them: 1)unless I am mistaken, the moment you choose to have a multiple trend for a number of variables, you can't look at other trends in single mode anymore, unless you undo the multiple trend 2) minimum resolution is 5 min which is too long if you want to monitor some potentially fast changing variable (spikes in cpu load for example). RE: rrdtool problem - baggins - 14.03.2017 Hi, For those who might be interested to get these multi-valued graphs in their visualization, this is what I ended up doing: -mark the objects to be used as 'export'. -the second step involves another server that runs 24x7, otherwise the graphs will be incomplete... I used a powerful machine that I use for backups, Logitech Media Server, zoneminder, etc. I believe that a simple raspberry should do the trick also. -create rrd archive (see original post). -schedule a script that runs every x minutes. My script fetches the data, updates the rrd, creates the graph and moves it to the DocumentRoot of the webserver. This is the script (note that this is quite a basic script with no error checking etc... Code: require('socket.http') Attached is the result. RE: rrdtool problem - Thomas - 15.03.2017 Hi I like your symbols at the picture. Is it your work? Or can it be freely downloaded from somewhere? RE: rrdtool problem - baggins - 15.03.2017 These icons come from the KNX-userforum iconset. You can find info on: KNX iconset |