wok-current view perl-rrd-simple/stuff/usr/bin/rrd_addsource @ rev 23775
updated xorg-libXpm, xorg-libXpm-dev and xorg-libXpm-util (3.5.12 -> 3.5.13)
author | Hans-G?nter Theisgen |
---|---|
date | Wed May 20 16:21:25 2020 +0100 (2020-05-20) |
parents | 471df2a3ab20 |
children |
line source
1 #!/usr/bin/perl
3 use strict;
4 use warnings;
6 use RRD::Simple();
8 if (@ARGV != 3) {
9 print "Usage: $0 rrdfile DSname DStype \n";
10 print "Example: $0 cpu.rrd nice COUNTER \n";
11 exit;
12 }
14 my $file = $ARGV[0];
15 my $dsname = $ARGV[1];
16 my $dstype = $ARGV[2];
18 my $rrd = RRD::Simple->new();
20 print "Add $dsname:$dstype into $file...";
21 $rrd->add_source($file, $dsname => $dstype);
22 print " ok.\n";