BTW: The "Round Robin Database" is something you should definitely investigate if you need to store any kind of numerical value, graph the stored values, and especially if you don't want to make sure that only the current values are stored in the database. Believe you me!
The Perl-script contains a construct I'd like to share with you. The
COMMENT modifier in RRDtool 1.2 and later does not like un-escaped ':' in the string to be printed. Here is the Perl code to do so:
$graphtime = localtime(time());
$graphtime =~ s/\:/\\\:/g;
That's regex in Perl, I really like it. Just don't forget to
use Time::Local if you want to deploy this code.;-)

