wok view perl-rrd-simple/stuff/usr/bin/rrd_addsource @ rev 25004

updated ntfs-3g and ntfs-3g-dev (2017.3.23 -> 2021.8.22)
author Hans-G?nter Theisgen
date Mon May 16 16:20:40 2022 +0100 (2022-05-16)
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";