Attached a patch for the rrd-tool LIBDBI integration with the following improvements:
[rrdtool.git] / doc / rrdupdate.pod
1 =head1 NAME
2
3 rrdupdate - Store a new set of values into the RRD
4
5 =head1 SYNOPSIS
6
7 B<rrdtool> {B<update> | B<updatev>} I<filename>
8 S<[B<--template>|B<-t> I<ds-name>[B<:>I<ds-name>]...]>
9 S<[B<--daemon> I<address>]>
10 S<B<N>|I<timestamp>B<:>I<value>[B<:>I<value>...]>
11 S<I<at-timestamp>B<@>I<value>[B<:>I<value>...]>
12 S<[I<timestamp>B<:>I<value>[B<:>I<value>...] ...]>
13
14 =head1 DESCRIPTION
15
16 The B<update> function feeds new data values into an B<RRD>. The data
17 is time aligned (interpolated) according to the properties of the
18 B<RRD> to which the data is written.
19
20 =over 8
21
22 =item B<updatev>
23
24 This alternate version of B<update> takes the same arguments and
25 performs the same function. The I<v> stands for I<verbose>, which
26 describes the output returned. B<updatev> returns a list of any and all
27 consolidated data points (CDPs) written to disk as a result of the
28 invocation of update. The values are indexed by timestamp (time_t),
29 RRA (consolidation function and PDPs per CDP), and data source (name).
30 Note that depending on the arguments of the current and previous call to
31 update, the list may have no entries or a large number of entries.
32
33 Since B<updatev> requires direct disk access, the B<--daemon> option cannot be
34 used with this command.
35
36 =item I<filename>
37
38 The name of the B<RRD> you want to update.
39
40 =item B<--template>|B<-t> I<ds-name>[B<:>I<ds-name>]...
41
42 By default, the B<update> function expects its data input in the order
43 the data sources are defined in the RRD, excluding any COMPUTE data
44 sources (i.e. if the third data source B<DST> is COMPUTE, the third
45 input value will be mapped to the fourth data source in the B<RRD> and
46 so on). This is not very error resistant, as you might be sending the
47 wrong data into an RRD.
48
49 The template switch allows you to specify which data sources you are
50 going to update and in which order. If the data sources specified in
51 the template are not available in the RRD file, the update process
52 will abort with an error message.
53
54 While it appears possible with the template switch to update data sources
55 asynchronously, B<RRDtool> implicitly assigns non-COMPUTE data sources missing
56 from the template the I<*UNKNOWN*> value.
57
58 Do not specify a value for a COMPUTE B<DST> in the B<update>
59 function. If this is done accidentally (and this can only be done
60 using the template switch), B<RRDtool> will ignore the value specified
61 for the COMPUTE B<DST>.
62
63 =item B<--daemon> I<address>
64
65 If given, B<RRDTool> will try to connect to the caching daemon L<rrdcached>
66 at I<address> and will fail if the connection cannot be established. If the
67 connection is successfully established the values will be sent to the daemon
68 instead of accessing the files directly.
69
70 For a list of accepted formats, see the B<-l> option in the L<rrdcached> manual.
71
72 =item B<N>|I<timestamp>B<:>I<value>[B<:>I<value>...]
73
74 The data used for updating the RRD was acquired at a certain
75 time. This time can either be defined in seconds since 1970-01-01 or
76 by using the letter 'N', in which case the update time is set to be
77 the current time. Negative time values are subtracted from the current
78 time. An AT_STYLE TIME SPECIFICATION (see the I<rrdfetch>
79 documentation) may also be used by delimiting the end of the time
80 specification with the '@' character instead of a ':'. Getting the
81 timing right to the second is especially important when you are
82 working with data-sources of type B<COUNTER>, B<DERIVE> or
83 B<ABSOLUTE>.
84
85 The remaining elements of the argument are DS updates. The order of
86 this list is the same as the order the data sources were defined in
87 the RRA. If there is no data for a certain data-source, the letter
88 B<U> (e.g., N:0.1:U:1) can be specified.
89
90 The format of the value acquired from the data source is dependent on
91 the data source type chosen. Normally it will be numeric, but the data
92 acquisition modules may impose their very own parsing of this
93 parameter as long as the colon (B<:>) remains the data source value
94 separator.
95
96 =back
97
98 =head1 ENVIRONMENT VARIABLES
99
100 The following environment variables may be used to change the behavior of
101 C<rrdtoolE<nbsp>update>:
102
103 =over
104
105 =item B<RRDCACHED_ADDRESS>
106
107 If this environment variable is set it will have the same effect as specifying
108 the C<--daemon> option on the command line. If both are present, the command
109 line argument takes precedence.
110
111 =back
112
113 =head1 EXAMPLES
114
115 =over
116
117 =item *
118
119 C<rrdtool update demo1.rrd N:3.44:3.15:U:23>
120
121 Update the database file demo1.rrd with 3 known and one I<*UNKNOWN*>
122 value. Use the current time as the update time.
123
124 =item *
125
126 C<rrdtool update demo2.rrd 887457267:U 887457521:22 887457903:2.7>
127
128 Update the database file demo2.rrd which expects data from a single
129 data-source, three times. First with an I<*UNKNOWN*> value then with two
130 regular readings. The update interval seems to be around 300 seconds.
131
132 =item *
133
134 C<rrdtool update --cache /var/lib/rrd/demo3.rrd N:42>
135
136 Update the file C</var/lib/rrd/demo3.rrd> with a single data source, using the
137 current time. If the caching daemon cannot be reached, do B<not> fall back to
138 direct file access.
139
140 =item *
141
142 C<rrdtool update --daemon unix:/tmp/rrdd.sock demo4.rrd N:23>
143
144 Use the UNIX domain socket C</tmp/rrdd.sock> to contact the caching daemon. If
145 the caching daemon is not available, update the file C<demo4.rrd> directly.
146 B<WARNING:> Since a relative path is specified, the following disturbing effect
147 may occur: If the daemon is available, the file relative to the working
148 directory B<of the daemon> is used. If the daemon is not available, the file
149 relative to the current working directory of the invoking process is used.
150 B<This may update two different files depending on whether the daemon could be
151 reached or not.> Don't do relative paths, kids!
152
153 =back
154
155 =head1 AUTHORS
156
157 Tobias Oetiker <tobi@oetiker.ch>,
158 Florian Forster <octoE<nbsp>atE<nbsp>verplant.org>
159