> I tried this: > rrdtool create test.rrd -b now-10d -s 86400 > DS:msgs:ABSOLUTE:86400:U:U RRA:AVERAGE:0.5:1:10 > > and then > rrdtool update test.rrd 1128643200:100 > > which returned > ERROR: illegal attempt to update using time 1128643200 when > last update time is 1128776944 (minimum one second step) > > What am I doing wrong?
A database that starts 10 days ago and has an RRA with 10 days of samples ends approximately now. You can only add data to the end of the database, rrdtool will shift the values in time. So what you need is a database that ends 10 days ago. Try: rrdtool create test.rrd -b now-22d -s 86400 \ DS:msgs:ABSOLUTE:86400:U:U RRA:AVERAGE:0.5:1:10 rrdtool update test.rrd 1128643200:100 Serge. p.s. try it within 2 days, otherwise it will give the same complaint again :) ------------- Op de inhoud van dit e-mailbericht en de daaraan gehechte bijlagen is de inhoud van de volgende disclaimer van toepassing: http://www.zeelandnet.nl/disclaimer.php ------------- For the content of this e-mail message and its attachment(s) the following disclaimer applies: http://www.zeelandnet.nl/disclaimer.php -- Unsubscribe mailto:[EMAIL PROTECTED] Help mailto:[EMAIL PROTECTED] Archive http://lists.ee.ethz.ch/rrd-users WebAdmin http://lists.ee.ethz.ch/lsg2.cgi
