Code

explain tzset
[rrdtool.git] / bindings / perl-shared / RRDs.pm
1 package RRDs;
3 use strict;
4 use vars qw(@ISA $VERSION);
6 @ISA = qw(DynaLoader);
8 require DynaLoader;
10 $VERSION = 1.000331;
12 bootstrap RRDs $VERSION;
14 1;
15 __END__
17 =head1 NAME
19 RRDs - Access rrdtool as a shared module
21 =head1 SYNOPSIS
23   use RRDs;
24   RRDs::error
25   RRDs::last ...
26   RRDs::info ...
27   RRDs::create ...
28   RRDs::update ...
29   RRDs::graph ...
30   RRDs::fetch ...
31   RRDs::tune ...
33 =head1 DESCRIPTION
35 =head2 Calling Sequence
37 This module accesses rrdtool functionality directly from within perl. The
38 arguments to the functions listed in the SYNOPSIS are explained in the regular
39 rrdtool documentation. The commandline call
41  rrdtool update mydemo.rrd --template in:out N:12:13
43 gets turned into
45  RRDs::update ("mydemo.rrd", "--template", "in:out", "N:12:13");
47 Note that
49  --template=in:out
51 is also valid.
54 =head2 Error Handling
56 The RRD functions will not abort your program even when they can not make
57 sense out of the arguments you fed them.
59 The function RRDs::error should be called to get the error status
60 after each function call. If RRDs::error does not return anything
61 then the previous function has completed its task successfully.
63  use RRDs;
64  RRDs::update ("mydemo.rrd","N:12:13");
65  my $ERR=RRDs::error;
66  die "ERROR while updating mydemo.rrd: $ERR\n" if $ERR;
68 =head2 Return Values
70 The functions RRDs::last, RRDs::graph, RRDs::info and RRDs::fetch return their
71 findings.
73 B<RRDs::last> returns a single INTEGER representing the last update time.
75  $lastupdate = RRDs::last ...
77 B<RRDs::graph> returns an pointer to an ARRAY containing the x-size and y-size of the
78 created image and results of the PRINT arguments.
80  ($averages,$xsize,$ysize) = RRDs::graph ...
81  print "Imagesize: ${xsize}x${ysize}\n";
82  print "Averages: ", (join ", ", @$averages);
84 B<RRDs::info> returns a pointer to a hash. The keys of the hash
85 represent the property names of the rrd and the values of the hash are
86 the values of the properties.  
88  $hash = RRDs::info "example.rrd";
89  foreach my $key (keys %$hash){
90    print "$key = $$hash{$key}\n";
91  }
93 B<RRDs::fetch> is the most complex of
94 the pack regarding return values. There are 4 values. Two normal
95 integers, a pointer to an array and a pointer to a array of pointers.
97   my ($start,$step,$names,$data) = RRDs::fetch ... 
98   print "Start:       ", scalar localtime($start), " ($start)\n";
99   print "Step size:   $step seconds\n";
100   print "DS names:    ", join (", ", @$names)."\n";
101   print "Data points: ", $#$data + 1, "\n";
102   print "Data:\n";
103   foreach my $line (@$data) {
104     print "  ", scalar localtime($start), " ($start) ";
105     $start += $step;
106     foreach my $val (@$line) {
107       printf "%12.1f ", $val;
108     }
109     print "\n";
110   }
112 See the examples directory for more ways to use this extension.
114 =head1 NOTE
116 If you are manipulating the TZ variable you should also call the posixs
117 function tzset to initialize all internal state of the library for properly
118 operating in the timezone of your choice.
120  use POSIX qw(tzset);
121  $ENV{TZ} = 'CET';   
122  POSIX::tzset();     
125 =head1 AUTHOR
127 Tobias Oetiker E<lt>oetiker@ee.ethz.chE<gt>
129 =cut