X-Git-Url: https://git.octo.it/?p=rrdtool.git;a=blobdiff_plain;f=examples%2Fshared-demo.pl;h=42d03dcf9df46d386d16f40129c8851cc8f9c980;hp=437d4639ec3f7eca5e03635e00c70eac1002cdf2;hb=0fe03275068c0e55d01a7cc2308fa12fdee569cf;hpb=3a4825306f808c36fb2c529f27c5457a0715dfaf diff --git a/examples/shared-demo.pl b/examples/shared-demo.pl index 437d463..42d03dc 100755 --- a/examples/shared-demo.pl +++ b/examples/shared-demo.pl @@ -1,4 +1,4 @@ -#! /bin/perl +#! /usr/bin/perl END { @@ -36,8 +36,8 @@ my $RUNS = 500; my $GRUNS = 4; my $RRD1 = "shared-demo.rrd"; my $RRD2 = "shared-demob.rrd"; -my $GIF1 = "shared-demo1.gif"; -my $GIF2 = "shared-demo2.gif"; +my $PNG1 = "shared-demo1.png"; +my $PNG2 = "shared-demo2.png"; my $time = 30*int(time/30); my $START = $time-$RUNS*$STEP; @@ -109,18 +109,18 @@ if ($ERROR = RRDs::error) { die "$0: unable to update `$RRD2': $ERROR\n"; } -print "* Creating $GRUNS graphs: $GIF1 & $GIF2\n\n"; +print "* Creating $GRUNS graphs: $PNG1 & $PNG2\n\n"; my $now = $time; for (my $i=0;$i<$GRUNS;$i++) { - my @rrd_gifs = ($RRD1, $GIF1, $RRD2, $GIF2); - while (@rrd_gifs) { - my $RRD = shift(@rrd_gifs); - my $GIF = shift(@rrd_gifs); - my ($graphret,$xs,$ys) = RRDs::graph $GIF, "--title", 'Test GRAPH', + my @rrd_pngs = ($RRD1, $PNG1, $RRD2, $PNG2); + while (@rrd_pngs) { + my $RRD = shift(@rrd_pngs); + my $PNG = shift(@rrd_pngs); + my ($graphret,$xs,$ys) = RRDs::graph $PNG, "--title", 'Test GRAPH', '--base', '1024', "--vertical-label", 'Dummy Units', "--start", (-$RUNS*$STEP), "--end", $time, - "--interlace", "--imgformat","GIF", + "--interlace", "--imgformat","PNG", "DEF:alpha=$RRD:a:AVERAGE", "DEF:beta=$RRD:b:AVERAGE", "DEF:gamma=$RRD:c:AVERAGE", @@ -147,7 +147,7 @@ for (my $i=0;$i<$GRUNS;$i++) { if ($ERROR = RRDs::error) { print "ERROR: $ERROR\n"; } else { - print "GIF Size: ${xs}x${ys}\n"; + print "Image Size: ${xs}x${ys}\n"; print "Graph Return:\n",(join "\n", @$graphret),"\n\n"; } }