File: rrdfirst.pod

package info (click to toggle)
rrdtool 1.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,772 kB
  • sloc: ansic: 39,371; sh: 1,810; perl: 1,268; cs: 652; makefile: 573; python: 169; ruby: 61; awk: 30
file content (39 lines) | stat: -rw-r--r-- 969 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
=head1 NAME

rrdfirst - Return the date of the first data sample in an RRA within an RRD

=head1 SYNOPSIS

B<rrdtool> B<first> I<filename> [B<--rraindex> I<number>] [B<--daemon>|B<-d> I<address>]

=head1 DESCRIPTION

The B<first> function returns the UNIX timestamp of the first data
sample entered into the specified RRA of the RRD file.

=over 8

=item I<filename>

The name of the B<RRD> that contains the data.

=item B<--rraindex> I<number>

The index number of the B<RRA> that is to be examined. If not specified, the
index defaults to zero. B<RRA> index numbers can be determined through
B<rrdtool info>.

=item B<--daemon>|B<-d> I<address>

Address of the L<rrdcached> daemon.  For a list of accepted formats, see
the B<-l> option in the L<rrdcached> manual.

 rrdtool first --daemon unix:/var/run/rrdcached.sock /var/lib/rrd/foo.rrd

=back

=head1 AUTHOR

Burton Strauss <Burton@ntopSupport.com>
Daemon support added by Steve Shipway <steve@steveshipway.org>