]> git.zerfleddert.de Git - upsgraph/blobdiff - upsgraph.pl
Add appropriate MIN/MAX RRAs to rrd files on creation and trigger recreation, if...
[upsgraph] / upsgraph.pl
index 19d8147ab0395c20f1edddd9d90776c96fdce9fa..1e335acd1aa613b9a151140a4cf965b04a967203 100755 (executable)
@@ -1,50 +1,94 @@
 #!/usr/bin/perl -w
 
+#Due to memory leak in Debian squeeze (Bug #545519)
+my $use_rrds = 0;
+my $rrd_result = 0;
+
 if ((@ARGV != 1) && (@ARGV != 2)) {
        print STDERR "Syntax: ${0} configfile [uid]\n";
        exit(1);
 }
 
 use Net::SNMP;
+use IO::Socket::INET;
+use IO::Select;
 use RRDs;
+use File::Copy;
 use Data::Dumper;
 
-$UPSGRAPH::host = "";
-$UPSGRAPH::rrdfile = "";
 $UPSGRAPH::outdir = "";
-$UPSGRAPH::community = "public";
+$UPSGRAPH::daysCovered = 370;
 $UPSGRAPH::step = 60;
-$UPSGRAPH::keep = (370*24*60*60)/$UPSGRAPH::step;
-@UPSGRAPH::fields = ();
-$UPSGRAPH::vars = {};
+$UPSGRAPH::stepsPerHour = (60 * 60) / $UPSGRAPH::step;
+$UPSGRAPH::keep = ($UPSGRAPH::daysCovered*24*60*60)/$UPSGRAPH::step;
+$UPSGRAPH::keepHours = ($UPSGRAPH::daysCovered*24*60*60)/$UPSGRAPH::stepsPerHour/$UPSGRAPH::step;
+$UPSGRAPH::hosts = ();
 
 do $ARGV[0] or die "can't read config: $!";
 
-my $host = $UPSGRAPH::host;
-my $rrdfile = $UPSGRAPH::rrdfile;
 my $outdir = $UPSGRAPH::outdir;
-my $community = $UPSGRAPH::community;
 my $step = $UPSGRAPH::step;
+my $stepsPerHour = $UPSGRAPH::stepsPerHour;
 my $keep = $UPSGRAPH::keep;
-my @fields = @UPSGRAPH::fields;
-my $vars = $UPSGRAPH::vars;
+my $keepHours = $UPSGRAPH::keepHours;
+my $hosts = $UPSGRAPH::hosts;
+
+sub rrd_update(@) {
+       my @args = @_;
+
+       if ($use_rrds == 1) {
+               RRDs::update(@args);
+               $rrd_result = RRDs::error;
+       } else {
+               $rrd_result = system("rrdtool", "update", @args);
+       }
+}
+
+sub rrd_graph(@) {
+       my @args = @_;
+       my @rrd_out = ();
+
+       if ($use_rrds == 1) {
+               @rrd_out = RRDs::graph(@args);
+               $rrd_result = RRDs::error;
+       } else {
+               my $rrd_stdout;
+
+               open(RRDFD, '-|', 'rrdtool', 'graph', @args);
+               while(<RRDFD>) {
+                       chomp;
+                       $rrd_stdout = $_;
+               }
+               close(RRDFD);
+               $rrd_result = $?;
+               if ($rrd_result == 0) {
+                       push @rrd_out, 0;
+                       push @rrd_out, split(/x/, $rrd_stdout);
+               }
+       }
+
+       return @rrd_out;
+}
 
 sub rrdcreate(@) {
-       my $rrdfile = shift;
+       my $newrrd = shift;
+       my $field = shift;
+       my $vars = shift;
        my $start = shift;
 
-       my @cmd = ("${rrdfile}", "--step=${step}");
+       my @cmd = ("${newrrd}", "--step=${step}");
 
        if (defined($start)) {
                push @cmd, "--start=${start}";
        }
 
-       foreach my $var (@fields) {
-               push @cmd, "DS:${var}:GAUGE:600:" .
-                       $vars->{$var}->{'min'} . ":" .
-                       $vars->{$var}->{'max'} . " ";
-       }
+       push @cmd, "DS:${field}:GAUGE:600:" .
+               $vars->{$field}->{'min'} . ":" .
+               $vars->{$field}->{'max'};
+
        push @cmd, "RRA:AVERAGE:0.5:1:${keep}";
+       push @cmd, "RRA:MIN:0.4:${stepsPerHour}:${keepHours}";
+       push @cmd, "RRA:MAX:0.4:${stepsPerHour}:${keepHours}";
 
        RRDs::create(@cmd);
        if (RRDs::error) {
@@ -53,183 +97,433 @@ sub rrdcreate(@) {
        }
 }
 
-if ($> == 0) {
-       if (@ARGV != 2) {
-               print STDERR "Running as root, please provide UID as 2th argument!\n";
-               exit(1);
+sub fetch_snmp(@) {
+       my $address = shift;
+       my $community = shift;
+       my $oid = shift;
+
+       (my $session, my $error) = Net::SNMP->session(Hostname => $address,
+                       Community => $community);
+
+       if (!$session) {
+               print STDERR "session error: $error";
+               return undef;
        }
 
-       print "Running as root, switching to ".$ARGV[1]."\n";
-       $< = $> = $ARGV[1];
-}
+       $session->translate(0);
 
-if (! -e "${rrdfile}") {
-       print "Creating ${rrdfile}...\n";
-       rrdcreate("${rrdfile}");
-}
+       my $result = $session->get_request($oid);
 
-my $rrdinfo = RRDs::info("${rrdfile}");
-if (RRDs::error) {
-       print "Error while getting info: " . RRDs::error . "\n";
-       exit 1;
+       $session->close;
+
+       return undef if (!defined($result));
+
+       $result->{$oid};
 }
 
-if ($rrdinfo->{'rra[0].rows'} != $keep) {
-       print "Resizing ${rrdfile} from " . $rrdinfo->{'rra[0].rows'} .
-           " to ${keep} samples.\n";
+sub fetch_tcp(@) {
+       my $address = shift;
+       my $port = shift;
 
-       (my $start, my $ostep, my $names, my $data) =
-               RRDs::fetch("${rrdfile}",
-               "-s " . (time() - ($rrdinfo->{'rra[0].rows'} * $rrdinfo->{'step'})),
-               "AVERAGE");
+       my $sock = IO::Socket::INET->new(PeerAddr => $address,
+                       PeerPort => $port,
+                       Proto => 'tcp',
+                       Timeout => 1);
 
-       if (RRDs::error) {
-               print "Error while fetching data: " . RRDs::error . "\n";
-               exit 1;
-       }
+       return undef if (!$sock);
 
-       rrdcreate("${rrdfile}.new", (${start}-${ostep}));
+       my $select = IO::Select->new($sock);
 
-       print "Preserving data since " . localtime($start) . "\n";
+       my $value = undef;
 
-       my $pos = $start;
-       foreach my $line (@$data) {
-               my $vline = "${pos}";
+       if ($select->can_read(1)) {
+               chomp($value) if (sysread($sock, $value, 4096) > 0);
+       }
 
-               foreach my $val (@$line) {
-                       $val = 'U' if (!defined($val));
-                       $vline .= ":${val}";
-               }
-               RRDs::update("${rrdfile}.new", $vline) or die "Can't insert data\n";
+       close($sock);
 
-               if (RRDs::error) {
-                       print "Error while updating: " . RRDs::error . "\n";
-                       exit 1;
-               }
-               $pos += $ostep;
+       if (!$value) {
+               return undef;
+       }
+
+       $value=~ s/\s//g;
+
+       $value;
+}
 
-               if ((($pos-$start)/$ostep) == $#$data) {
+sub fetch_tcp_multi(@) {
+       my $address = shift;
+       my $port = shift;
+       my $delimiter = shift;
+       my %values;
+
+       my $sock = IO::Socket::INET->new(PeerAddr => $address,
+                       PeerPort => $port,
+                       Proto => 'tcp',
+                       Timeout => 1);
+
+       return undef if (!$sock);
+
+       my $select = IO::Select->new($sock);
+
+       while($select->can_read(1)) {
+               if (sysread($sock, my $buf, 16384) > 0) {
+                       $buf=~s/\r//g;
+                       foreach my $line (split(/\n/, $buf)) {
+                               (my $key, my $value) = split(/${delimiter}/, $line);
+                               $value=~ s/\s//g;
+                               $values{$key} = $value;
+                       }
+               } else {
                        last;
                }
        }
 
-       rename("${rrdfile}", "${rrdfile}.old") or die "Can't rename old file: $!\n";
-       rename("${rrdfile}.new", "${rrdfile}") or die "Can't rename new file: $!\n";
+       close($sock);
 
-       $rrdinfo = RRDs::info("${rrdfile}");
-       if (RRDs::error) {
-               print "Error while getting info: " . RRDs::error . "\n";
-               exit 1;
-       }
+       %values;
+}
 
-       if ($rrdinfo->{'rra[0].rows'} != $keep) {
-               print "Failed!\n";
-               exit 1;
+if ($> == 0) {
+       if (@ARGV != 2) {
+               print STDERR "Running as root, please provide UID as 2th argument!\n";
+               exit(1);
        }
+
+       print "Running as root, switching to ".$ARGV[1]."\n";
+       $< = $> = $ARGV[1];
 }
 
-my $child = fork();
+foreach my $host (@$hosts) {
+       my $rrdfile = $host->{'rrdfile'};
 
-die "fork failed!" if (!defined($child));
+       foreach my $var (keys(%{$host->{'vars'}})) {
+               $host->{'vars'}->{$var}->{'min'} = 'U' if (!defined($host->{'vars'}->{$var}->{'min'}));
+               $host->{'vars'}->{$var}->{'max'} = 'U' if (!defined($host->{'vars'}->{$var}->{'max'}));
+       }
 
-exit 0 if ($child != 0);
+       if (-e "${rrdfile}") {
+               print "Reading old ${rrdfile} to preserve data...\n";
 
-while(1) {
-       ($session,$error) = Net::SNMP->session(Hostname => $host,
-                       Community => $community);
+               my $rrdinfo = RRDs::info("${rrdfile}");
+               if (RRDs::error) {
+                       print "Error while getting info: " . RRDs::error . "\n";
+                       exit 1;
+               }
 
-       die "session error: $error" unless ($session);
+               (my $start, my $ostep, my $names, my $data) =
+                       RRDs::fetch("${rrdfile}",
+                                       "-s " . (time() - ($rrdinfo->{'rra[0].rows'} * $rrdinfo->{'step'})),
+                                       "AVERAGE");
 
-       $session->translate(0);
+               if (RRDs::error) {
+                       print "Error while fetching data: " . RRDs::error . "\n";
+                       exit 1;
+               }
+
+               foreach my $field (@$names) {
+                       if (! -e "${rrdfile}.${field}") {
+                               rrdcreate("${rrdfile}.${field}",
+                                       "${field}",
+                                       $host->{'vars'},
+                                       (${start}-${ostep}));
+                       }
+               }
 
-       foreach my $var (@fields) {
-               delete $vars->{$var}->{'value'};
+               my $pos = $start;
+               foreach my $line (@$data) {
+                       foreach my $field (@$names) {
+                               my $val = shift (@$line);
+                               $val = 'U' if (!defined($val));
 
-               my $result = $session->get_request($vars->{$var}->{'oid'});
-               next unless (defined $result);
+                               RRDs::update("${rrdfile}.${field}", "${pos}:${val}");
+                               if (RRDs::error) {
+                                       print "Can't insert data: " . RRDs::error . "\n";
+                                       exit 1;
+                               }
 
-               $vars->{$var}->{'value'} = $result->{$vars->{$var}->{'oid'}};
-               if (defined($vars->{$var}->{'factor'})) {
-                       $vars->{$var}->{'value'} *= $vars->{$var}->{'factor'};
-               }
-       }
+                       }
 
-       $session->close;
+                       $pos += $ostep;
 
-       my $vline = "N";
-       foreach my $var (@fields) {
-               if (!(defined($vars->{$var}->{'value'}))) {
-                       $vars->{$var}->{'value'} = 'U';
+                       if ((($pos-$start)/$ostep) == $#$data) {
+                               last;
+                       }
                }
-               $vline .= ":" . $vars->{$var}->{'value'};
-       }
-       RRDs::update("${rrdfile}", $vline);
-       if (RRDs::error) {
-               print "Error while updating: " . RRDs::error . "\n";
-       }
 
-       open(HTML, ">${outdir}/index.html.new");
-
-       print HTML '<html><head><meta http-equiv="refresh" content="60"/><meta http-equiv="cache-control" content="no-cache"/><meta http-equiv="pragma" content="no-cache"/><meta http_equiv="expires" content="Sat, 26 Jul 1997 05:00:00 GMT"/><title>USV status</title></head>';
-       print HTML '<body bgcolor="#ffffff">';
+               rename("${rrdfile}", "${rrdfile}.old") or die "Can't rename old file: $!\n";
+       }
 
-       foreach my $var (@fields) {
-               my @graphdef = ("-t", $vars->{$var}->{'name'}, "DEF:${var}=${rrdfile}:${var}:AVERAGE", "LINE1:${var}#FF0000");
-               (my $averages, my $width, my $height) =
-                       RRDs::graph("${outdir}/${var}.png.new",
-                       "-w", "720", @graphdef);
+       foreach my $field (@{$host->{'fields'}}) {
+               if (! -e "${rrdfile}.${field}") {
+                       print "Creating ${rrdfile}.${field}...\n";
+                       rrdcreate("${rrdfile}.${field}",
+                               "${field}",
+                               $host->{'vars'});
+               }
 
+               my $rrdinfo = RRDs::info("${rrdfile}.${field}");
                if (RRDs::error) {
-                       print "Error while graphing: " . RRDs::error . "\n";
-               } else {
-                       rename("${outdir}/${var}.png.new", "${outdir}/${var}.png");
+                       print "Error while getting info: " . RRDs::error . "\n";
+                       exit 1;
                }
 
-               print HTML "<a href=\"${var}.html\"><img src=\"${var}.png\" width=\"${width}\" height=\"${height}\" border=\"0\"></a>";
+               if (defined($rrdinfo->{"ds[${field}].min"})) {
+                       if ($rrdinfo->{"ds[${field}].min"} ne $host->{'vars'}->{$field}->{'min'}) {
+                               RRDs::tune("${rrdfile}.${field}","-i",$field.":".$host->{'vars'}->{$field}->{'min'});
+                       }
+               } else {
+                       if ($host->{'vars'}->{$field}->{'min'} ne 'U') {
+                               RRDs::tune("${rrdfile}.${field}","-i",$field.":".$host->{'vars'}->{$field}->{'min'});
+                       }
+               }
 
-               open (HTML2, ">${outdir}/${var}.html.new");
-               print HTML2 "<html><head><title>" . $vars->{$var}->{'name'} . "</title></head>";
-               print HTML2 '<body bgcolor="#ffffff">';
+               if (RRDs::error) {
+                       print "Error while setting min: " . RRDs::error . "\n";
+                       exit 1;
+               }
 
-               ($averages, $width, $height) =
-                       RRDs::graph("${outdir}/${var}.long.png.new",
-                       "-w", "1008", @graphdef);
+               if (defined($rrdinfo->{"ds[${field}].max"})) {
+                       if ($rrdinfo->{"ds[${field}].max"} ne $host->{'vars'}->{$field}->{'max'}) {
+                               RRDs::tune("${rrdfile}.${field}","-a",$field.":".$host->{'vars'}->{$field}->{'max'});
+                       }
+               } else {
+                       if ($host->{'vars'}->{$field}->{'max'} ne 'U') {
+                               RRDs::tune("${rrdfile}.${field}","-a",$field.":".$host->{'vars'}->{$field}->{'max'});
+                       }
+               }
 
                if (RRDs::error) {
-                       print "Error while graphing: " . RRDs::error . "\n";
-               } else {
-                       rename("${outdir}/${var}.long.png.new", "${outdir}/${var}.long.png");
+                       print "Error while setting max: " . RRDs::error . "\n";
+                       exit 1;
                }
+                   
+               if ($rrdinfo->{'rra[0].rows'} != $keep ||
+                       !defined($rrdinfo->{'rra[1].rows'}) || $rrdinfo->{'rra[1].rows'} != $keepHours) {
+
+                       print "Resizing ${rrdfile}.${field} from " . $rrdinfo->{'rra[0].rows'} .
+                               " to ${keep} samples.\n";
+
+                       (my $start, my $ostep, my $names, my $data) =
+                               RRDs::fetch("${rrdfile}.${field}",
+                                               "-s " . (time() - ($rrdinfo->{'rra[0].rows'} * $rrdinfo->{'step'})),
+                                               "AVERAGE");
+
+                       if (RRDs::error) {
+                               print "Error while fetching data: " . RRDs::error . "\n";
+                               exit 1;
+                       }
+
+                       rrdcreate("${rrdfile}.${field}.new",
+                               "${field}",
+                               $host->{'vars'},
+                               (${start}-${ostep}));
+
+                       print "Preserving data in file ${rrdfile}.${field} since " . localtime($start) . "\n";
+
+                       my $pos = $start;
+                       foreach my $line (@$data) {
+                               my $vline = "${pos}";
+
+                               foreach my $val (@$line) {
+                                       $val = 'U' if (!defined($val));
+                                       $vline .= ":${val}";
+                               }
+                               RRDs::update("${rrdfile}.${field}.new", $vline) or die "Can't insert data\n";
+
+                               if (RRDs::error) {
+                                       print "Error while updating: " . RRDs::error . "\n";
+                                       exit 1;
+                               }
+                               $pos += $ostep;
+
+                               if ((($pos-$start)/$ostep) == $#$data) {
+                                       last;
+                               }
+                       }
+
+                       rename("${rrdfile}.${field}", "${rrdfile}.${field}.old") or die "Can't rename old file: $!\n";
+                       rename("${rrdfile}.${field}.new", "${rrdfile}.${field}") or die "Can't rename new file: $!\n";
+
+                       $rrdinfo = RRDs::info("${rrdfile}.${field}");
+                       if (RRDs::error) {
+                               print "Error while getting info: " . RRDs::error . "\n";
+                               exit 1;
+                       }
+
+                       if ($rrdinfo->{'rra[0].rows'} != $keep) {
+                               print "Failed!\n";
+                               exit 1;
+                       }
+               }
+       }
+}
 
-               print HTML2 "<img src=\"${var}.long.png\" width=\"${width}\" height=\"${height}\"><br>";
+my $child = fork();
 
-               ($averages, $width, $height) =
-                       RRDs::graph("${outdir}/${var}.week.png.new",
-                       "-w", "1008", "-e", "now", "-s", "end-1w", @graphdef);
+die "fork failed!" if (!defined($child));
 
-               if (RRDs::error) {
-                       print "Error while graphing: " . RRDs::error . "\n";
-               } else {
-                       rename("${outdir}/${var}.week.png.new", "${outdir}/${var}.week.png");
-               }
+exit 0 if ($child != 0);
 
-               print HTML2 "<img src=\"${var}.week.png\" width=\"${width}\" height=\"${height}\"><br>";
+while(1) {
+       open(HTML, ">${outdir}/index.html.new");
 
-               ($averages, $width, $height) =
-                       RRDs::graph("${outdir}/${var}.year.png.new",
-                       "-w", "1008", "-e", "now", "-s", "end-1y", @graphdef);
+       print HTML '<html><head><meta http-equiv="refresh" content="60"/><meta http-equiv="cache-control" content="no-cache"/><meta http-equiv="pragma" content="no-cache"/><meta http_equiv="expires" content="Sat, 26 Jul 1997 05:00:00 GMT"/><title>Status</title></head>';
+       print HTML '<body bgcolor="#ffffff">';
 
-               if (RRDs::error) {
-                       print "Error while graphing: " . RRDs::error . "\n";
-               } else {
-                       rename("${outdir}/${var}.year.png.new", "${outdir}/${var}.year.png");
+       foreach my $host (@$hosts) {
+               print HTML "[<a href=\"#".${host}->{'name'}."\">".${host}->{'name'}."</a>]&nbsp;";
+       }
+       print HTML "<br>\n";
+
+       foreach my $host (@$hosts) {
+               print HTML "<br>\n";
+               print HTML "<a name=\"".${host}->{'name'}."\"></a>\n";
+               my $vars = $host->{'vars'};
+               my $rrdfile = $host->{'rrdfile'};
+               my $hostname = $host->{'name'};
+               my %multi_values = ();
+
+               foreach my $var (@{$host->{'fields'}}) {
+                       delete $vars->{$var}->{'value'};
+
+                       my $result;
+
+                       if ((!defined($vars->{$var}->{'proto'})) ||
+                           ($vars->{$var}->{'proto'} eq '') ||
+                           ($vars->{$var}->{'proto'} eq 'snmp')) {
+                               $result = fetch_snmp($host->{'address'}, $host->{'community'}, $vars->{$var}->{'oid'});
+                       } elsif ($vars->{$var}->{'proto'} eq 'tcp') {
+                               $result = fetch_tcp($host->{'address'}, $vars->{$var}->{'port'});
+                       } elsif ($vars->{$var}->{'proto'} eq 'tcp_multi') {
+                               if (defined($multi_values{$vars->{$var}->{'multi_id'}})) {
+                                       $result = $multi_values{$vars->{$var}->{'multi_id'}}
+                               } else {
+                                       my %values = fetch_tcp_multi($host->{'address'}, $vars->{$var}->{'port'}, $vars->{$var}->{'multi_delimiter'});
+                                       @multi_values{keys %values} = values %values;
+                                       $result = $multi_values{$vars->{$var}->{'multi_id'}};
+                               }
+                       }
+
+                       next unless (defined $result);
+
+                       $vars->{$var}->{'value'} = $result;
+                       if (defined($vars->{$var}->{'factor'})) {
+                               $vars->{$var}->{'value'} *= $vars->{$var}->{'factor'};
+                       }
                }
 
-               print HTML2 "<img src=\"${var}.year.png\" width=\"${width}\" height=\"${height}\"><br>";
+               foreach my $var (@{$host->{'fields'}}) {
+                       if (!(defined($vars->{$var}->{'value'}))) {
+                               $vars->{$var}->{'value'} = 'U';
+                       }
+                       rrd_update("${rrdfile}.${var}", "N:" . $vars->{$var}->{'value'});
+               }
+               if ($rrd_result) {
+                       print "Error while updating: " . $rrd_result . "\n";
+               }
 
-               print HTML2 "</body></html>\n";
-               close(HTML2);
-               rename("${outdir}/${var}.html.new", "${outdir}/${var}.html");
+               foreach my $var (@{$host->{'fields'}}) {
+                       my @graphdef = ('-P', "--lazy", "-t", $hostname." - ".$vars->{$var}->{'name'}, "DEF:${var}=${rrdfile}.${var}:${var}:AVERAGE", "LINE1:${var}#FF0000");
+                       
+                       push @graphdef, "DEF:${var}-min=${rrdfile}.${var}:${var}:MIN", "LINE1:${var}-min#0000FF";
+                       push @graphdef, "DEF:${var}-max=${rrdfile}.${var}:${var}:MAX", "LINE1:${var}-max#00FF00";
+                       push @graphdef, "VDEF:cur=${var},LAST";
+                       push @graphdef, 'GPRINT:cur:Current\\: <span foreground="#FF0000">%.2lf</span>\\r';
+
+                       my $mtime;
+                       $mtime=(stat("${outdir}/${hostname}.${var}.png.work"))[9];
+
+                       (my $averages, my $width, my $height) =
+                               rrd_graph("${outdir}/${hostname}.${var}.png.work",
+                                               "-w", "720", @graphdef);
+
+                       pop @graphdef;
+                       pop @graphdef;
+
+                       if ($rrd_result) {
+                               print "Error while graphing: " . $rrd_result . "\n";
+                       } else {
+                               my $newmtime=(stat("${outdir}/${hostname}.${var}.png.work"))[9];
+                               if ((!defined($mtime)) || ($newmtime != $mtime)) {
+                                       copy("${outdir}/${hostname}.${var}.png.work", "${outdir}/${hostname}.${var}.png.new");
+                                       rename("${outdir}/${hostname}.${var}.png.new", "${outdir}/${hostname}.${var}.png");
+                               }
+                       }
+
+                       print HTML "<a href=\"${hostname}.${var}.html\"><img src=\"${hostname}.${var}.png\" width=\"${width}\" height=\"${height}\" border=\"0\"></a><br>\n";
+
+                       open (HTML2, ">${outdir}/${hostname}.${var}.html.new");
+                       print HTML2 '<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta http-equiv="refresh" content="60"/><meta http-equiv="cache-control" content="no-cache"/><meta http-equiv="pragma" content="no-cache"/><meta http_equiv="expires" content="Sat, 26 Jul 1997 05:00:00 GMT"/><title>' . $vars->{$var}->{'name'} . '</title></head>';
+                       print HTML2 '<body bgcolor="#ffffff">';
+
+                       push @graphdef, "VDEF:min=${var}-min,MINIMUM";
+                       push @graphdef, "GPRINT:min:Minimum\\: %.2lf";
+
+                       push @graphdef, "VDEF:avg=${var},AVERAGE";
+                       push @graphdef, "GPRINT:avg:Average\\: %.2lf";
+
+                       push @graphdef, "VDEF:max=${var}-max,MAXIMUM";
+                       push @graphdef, "GPRINT:max:Maximum\\: %.2lf";
+
+                       push @graphdef, "VDEF:cur=${var},LAST";
+                       push @graphdef, "GPRINT:cur:Current\\: %.2lf";
+
+                       $mtime=(stat("${outdir}/${hostname}.${var}.long.png.work"))[9];
+                       ($averages, $width, $height) =
+                               rrd_graph("${outdir}/${hostname}.${var}.long.png.work",
+                                               "-w", "1008", @graphdef);
+
+                       if ($rrd_result) {
+                               print "Error while graphing: " . $rrd_result . "\n";
+                       } else {
+                               my $newmtime=(stat("${outdir}/${hostname}.${var}.long.png.work"))[9];
+                               if ((!defined($mtime)) || ($newmtime != $mtime)) {
+                                       copy("${outdir}/${hostname}.${var}.long.png.work", "${outdir}/${hostname}.${var}.long.png.new");
+                                       rename("${outdir}/${hostname}.${var}.long.png.new", "${outdir}/${hostname}.${var}.long.png");
+                               }
+                       }
+
+                       print HTML2 "<img src=\"${hostname}.${var}.long.png\" width=\"${width}\" height=\"${height}\"><br>\n";
+
+                       $mtime=(stat("${outdir}/${hostname}.${var}.week.png.work"))[9];
+                       ($averages, $width, $height) =
+                               rrd_graph("${outdir}/${hostname}.${var}.week.png.work",
+                                               "-w", "1008", "-e", "now", "-s", "end-1w", @graphdef);
+
+                       if ($rrd_result) {
+                               print "Error while graphing: " . $rrd_result . "\n";
+                       } else {
+                               my $newmtime=(stat("${outdir}/${hostname}.${var}.week.png.work"))[9];
+                               if ((!defined($mtime)) || ($newmtime != $mtime)) {
+                                       copy("${outdir}/${hostname}.${var}.week.png.work", "${outdir}/${hostname}.${var}.week.png.new");
+                                       rename("${outdir}/${hostname}.${var}.week.png.new", "${outdir}/${hostname}.${var}.week.png");
+                               }
+                       }
+
+                       print HTML2 "<img src=\"${hostname}.${var}.week.png\" width=\"${width}\" height=\"${height}\"><br>\n";
+
+                       $mtime=(stat("${outdir}/${hostname}.${var}.year.png.work"))[9];
+                       ($averages, $width, $height) =
+                               rrd_graph("${outdir}/${hostname}.${var}.year.png.work",
+                                               "-w", "1008", "-e", "now", "-s", "end-1y", @graphdef);
+
+                       if ($rrd_result) {
+                               print "Error while graphing: " . $rrd_result . "\n";
+                       } else {
+                               my $newmtime=(stat("${outdir}/${hostname}.${var}.year.png.work"))[9];
+                               if ((!defined($mtime)) || ($newmtime != $mtime)) {
+                                       copy("${outdir}/${hostname}.${var}.year.png.work", "${outdir}/${hostname}.${var}.year.png.new");
+                                       rename("${outdir}/${hostname}.${var}.year.png.new", "${outdir}/${hostname}.${var}.year.png");
+                               }
+                       }
+
+                       print HTML2 "<img src=\"${hostname}.${var}.year.png\" width=\"${width}\" height=\"${height}\"><br>\n";
+
+                       print HTML2 "</body></html>\n";
+                       close(HTML2);
+                       rename("${outdir}/${hostname}.${var}.html.new", "${outdir}/${hostname}.${var}.html");
+               }
        }
 
        print HTML "</body></html>\n";
Impressum, Datenschutz