introduced header_property in info output -- Daniel.Pocock barclayscapital.com
[rrdtool.git] / doc / rrdinfo.pod
1 =head1 NAME
2
3 rrdinfo - extract header information from an RRD
4
5 =head1 SYNOPSIS
6
7 B<rrdtool> B<info> I<filename>
8 S<[B<--daemon> I<address>]>
9
10 =head1 DESCRIPTION
11
12 The B<info> function prints the header information from an RRD in
13 a parsing friendly format.
14
15 Check L<rrdcreate> if you are uncertain about the meaning of the
16 individual keys.
17
18 =over 8
19
20 =item I<filename>
21
22 The name of the B<RRD> you want to examine.
23
24 =item B<--daemon> I<address>
25
26 Address of the L<rrdcached> daemon. If specified, a C<flush> command is sent
27 to the server before reading the RRD files. This allows B<rrdtool> to return
28 fresh data even if the daemon is configured to cache values for a long time.
29 For a list of accepted formats, see the B<-l> option in the L<rrdcached> manual.
30
31  rrdtool info --daemon unix:/var/run/rrdcached.sock /var/lib/rrd/foo.rrd
32
33 =back
34
35 =head1 EXAMPLE
36
37 This is the output generated by running B<info> on a simple RRD which
38 contains two data sources and one RRA. Note that the number after the
39 I<last_update> keyword is in seconds since 1970. The string B<NaN>
40 stands for I<*UNKNOWN*> data. In the example it means that this RRD
41 has neither minimum nor maximum values defined for either of its
42 data sources.
43
44  filename = "random.rrd"
45  rrd_version = "0001"
46  step = 300
47  last_update = 955892996
48  header_size = 2872
49  ds[a].type = "GAUGE"
50  ds[a].minimal_heartbeat = 600
51  ds[a].min = NaN
52  ds[a].max = NaN
53  ds[a].last_ds = "UNKN"
54  ds[a].value = 2.1824421548e+04
55  ds[a].unknown_sec = 0
56  ds[b].type = "GAUGE"
57  ds[b].minimal_heartbeat = 600
58  ds[b].min = NaN
59  ds[b].max = NaN
60  ds[b].last_ds = "UNKN"
61  ds[b].value = 3.9620838224e+03
62  ds[b].unknown_sec = 0
63  rra[0].cf = "AVERAGE"
64  rra[0].pdp_per_row = 1
65  rra[0].cdp_prep[0].value = nan
66  rra[0].cdp_prep[0].unknown_datapoints = 0
67  rra[0].cdp_prep[1].value = nan
68  rra[0].cdp_prep[1].unknown_datapoints = 0
69
70 =head1 ENVIRONMENT VARIABLES
71
72 The following environment variables may be used to change the behavior of
73 C<rrdtoolE<nbsp>info>:
74
75 =over 4
76
77 =item B<RRDCACHED_ADDRESS>
78
79 If this environment variable is set it will have the same effect as specifying
80 the C<--daemon> option on the command line. If both are present, the command
81 line argument takes precedence.
82
83 =back
84
85 =head1 AUTHOR
86
87 Tobias Oetiker E<lt>tobi@oetiker.chE<gt>
88