misc fixes for better display
[rrdtool.git] / doc / rrdfetch.pod
1 =head1 NAME
2
3 rrdfetch - Fetch data from an RRD.
4
5 =head1 SYNOPSIS
6
7 B<rrdtool> B<fetch> I<filename> I<CF> 
8 S<[B<--resolution>|B<-r> I<resolution>]> 
9 S<[B<--start>|B<-s> I<start>]> 
10 S<[B<--end>|B<-e> I<end>]> 
11
12 =head1 DESCRIPTION
13
14 The B<fetch> function is normally used internally by the graph function,
15 to get data from B<RRD>s. B<fetch> will analyze the B<RRD> and
16 will try to retrieve the data in the resolution requested.
17 The data fetched is printed to stdout. I<*UNKNOWN*> data is often
18 represented by the string "NaN" depending on your OS's printf
19 function.
20
21 =over 8
22
23 =item I<filename> 
24
25 the name of the B<RRD> you want to fetch the data from.
26
27 =item I<CF> 
28
29 which consolidation function should have been applied to the data you
30 want to fetch? (AVERAGE,MIN,MAX,LAST)
31
32 =item B<--resolution>|B<-r> I<resolution> (default is the highest resolution)
33
34 what interval should the values have (seconds per value). B<rrdfetch> will try
35 to match your request, but it will return data even if no absolute
36 match is possible. B<NB.> See note below.
37
38 =item B<--start>|B<-s> I<start> (default end-1day)
39
40 when should the data begin. A time in seconds since epoch (1970-01-01)
41 is required. Negative numbers are relative to the current time. By default
42 one day worth of data will be fetched. See also AT-STYLE TIME SPECIFICATION
43 section for a detailed explanation on  ways to specify start time.
44
45 =item B<--end>|B<-e> I<end> (default now)
46
47 when should the data end. Time in seconds since epoch. See also
48 AT-STYLE TIME SPECIFICATION section for a detailed explanation of how to specify
49 end time.
50
51 =back
52
53 =head2 RESOLUTION INTERVAL
54
55 In order to get RRDtool to fetch anything other than the finest resolution RRA 
56 B<both> the start and end time must be specified on boundaries that are 
57 multiples of the wanted resolution. Consider the following example:
58
59  rrdtool create subdata.rrd -s 10 DS:ds0:GAUGE:300:0:U \
60   RRA:AVERAGE:0.5:30:3600 \
61   RRA:AVERAGE:0.5:90:1200 \
62   RRA:AVERAGE:0.5:360:1200 \
63   RRA:MAX:0.5:360:1200 \
64   RRA:AVERAGE:0.5:8640:600 \
65   RRA:MAX:0.5:8640:600
66
67 This RRD collects data every 10 seconds and stores its averages over 5 minutes, 
68 15 minutes, 1 hour and 1 day as well as the maxima for 1 hour and 1 day.
69
70 Consider now that you want too fetch the 15 minute average data for last hour. 
71 So you might try
72
73  rrdtool fetch subdata.rrd AVERAGE -r 900 -s -1h
74
75 However, this will almost always result in a time series that is B<NOT> in the 15 
76 minute RRA. Therefore the highest resolution RRA, i.e. 5 minute averages, will 
77 be chosen which, in this case, is not what you want.
78
79 Hence, make sure that
80
81 =over 3
82
83 =item 1.
84
85 both start and end time are a multiple of 900
86
87 =item 2.
88
89 both start and end time are within the wanted RRA
90
91 =back
92
93 So, if time now is called "t",
94
95  do end time == int(t/900)*900,
96  start time == end time -1hour, resolution == 900.
97
98 In e.g. bash this could look as:
99
100  TIME=$(date +%s)
101  RRDRES=900
102  rrdtool fetch subdata.rrd AVERAGE -r $RRDRES \
103     -e $(echo $(($TIME/$RRDRES*$RRDRES))) -s e-1h
104
105 Or in Perl:
106
107  perl -e '$ctime = time; $rrdres = 900; \
108           system "rrdtool fetch subdata.rrd AVERAGE \
109                   -r $rrdres -e @{[int($ctime/$rrdres)*$rrdres]} -s e-1h"'
110
111
112 =head2 AT-STYLE TIME SPECIFICATION
113
114 Apart from the traditional I<Seconds since epoch>, RRDtool does also
115 understand at-style time specification.  The specification is called
116 "at-style" after Unix command at(1) that has moderately complex ways
117 to specify time to run your job at.  The at-style specification
118 consists of two parts: B<TIME REFERENCE> specification and B<TIME
119 OFFSET> specification.
120
121 =head2 TIME REFERENCE SPECIFICATION
122
123 Time reference specification is used, well,... to establish a reference
124 moment in time (for time offset to be applied to). When present,
125 it should come first, when omitted, it defaults to B<now>. On its own part,
126 time reference consists of I<time-of-day> reference (which should come
127 first, if present) and I<day> reference.
128
129 I<Time-of-day> can be specified as B<HH:MM>, B<HH.MM>,
130 or just B<HH>, you can suffix it with B<am> or B<pm> or use
131 24-hours clock. The few special times of day are understood as well,
132 these include B<midnight> (00:00), B<noon> (12:00) and British
133 B<teatime> (16:00).
134
135 The I<day> can be specified as I<month-name> I<day-of-the-month>
136 and optional 2- or 4-digit I<year> number (e.g. March 8 1999).
137 Alternatively, you can use I<day-of-week-name> (e.g. Monday),
138 or one of the words: B<yesterday>, B<today>, B<tomorrow>.
139 You can also specify I<day> as a full date in several numerical formats;
140 these include: B<MM/DD/[YY]YY>, B<DD.MM.[YY]YY>, B<YYYYMMDD>.
141
142 I<NOTE1>: this is different from the original at(1) behavior,
143 which interprets a single-number date as MMDD[YY]YY.
144
145 I<NOTE2>: if you specify I<day> this way, the I<time-of-day> is REQUIRED
146 to be present.
147
148 Finally, you can use words B<now>, B<start>, or B<end> as your time
149 reference. B<Now> refers to the current moment (and is also a default
150 time reference). B<Start> (B<end>) can be used to specify time
151 relative to the start (end) time for those tools that use these
152 categories (B<rrdfetch>, L<rrdgraph>).
153
154 Month and weekday names can be used in their naturally abbreviated form
155 (e.g., Dec for December, Sun for Sunday, etc.). The words B<now>,
156 B<start>, B<end> can be abbreviated to B<n>, B<s>, B<e>.
157
158 =head2 TIME OFFSET SPECIFICATION
159
160 Time offset specification is used to add (or subtract) certain time
161 interval to (from) the time reference moment. It consists of I<sign>
162 (S<B<+> or B<->>) and I<amount>. The following time units can be used
163 to specify the I<amount>: B<years>, B<months>, B<weeks>, B<days>,
164 B<hours>, B<minutes>, B<seconds>, these can be used in singular
165 or plural form, and abbreviated naturally or to a single letter
166 (e.g. +3days, -1wk, -3y). Several time units can be combined
167 together (e.g., -5mon1w2d), as well as several time offsets can be
168 concatenated (e.g., -5h45min = -5h-45min = -6h+15min = -7h+1h30m-15min, etc.)
169
170 I<NOTE3>: If you specify time offset in days, weeks, months, or years,
171 you will end with the time offset that may vary depending on you time
172 reference, because all those time units have no single well defined
173 time interval value (S<1 year> contains either 365 or 366 days, S<1 month>
174 is 28 to 31 days long, and even S<1 day> may be not equal to 24 hours
175 twice a year, when DST-related clock adjustments take place).
176 To cope with this, when you use days, weeks, months, or years
177 as your time offset units your time reference date is adjusted
178 accordingly without taking too much further effort to ensure anything
179 about it (in the hope that mktime(3) will take care of this later).
180 This may lead to some surprising (or even invalid!) results,
181 e.g. S<'May 31 -1month'> = S<'Apr 31'> (meaningless) = S<'May 1'>
182 (after mktime(3) normalization); in the EET timezone
183 '3:30am Mar 29 1999 -1 day' yields '3:30am Mar 28 1999' (Sunday)
184 which is invalid time/date combination (because of 3am -> 4am DST
185 forward clock adjustment, see the below example).
186 On the other hand, hours, minutes, and seconds are well defined time
187 intervals, and these are guaranteed to always produce time offsets
188 exactly as specified (e.g. for EET timezone, S<'8:00 Mar 27 1999 +2 days'> =
189 S<'8:00 Mar 29 1999'>, but since there is 1-hour DST forward clock adjustment
190 takes place around S<3:00 Mar 28 1999>, the actual time interval between
191 S<8:00 Mar 27 1999> and S<8:00 Mar 29 1999> equals 47 hours; on the other hand,
192 S<'8:00 Mar 27 1999 +48 hours'> = S<'9:00 Mar 29 1999'>, as expected)
193
194 I<NOTE4>: The single-letter abbreviation for both B<months> and B<minutes>
195 is B<m>. To disambiguate, the parser tries to read your S<mind :)>
196 by applying the following two heuristics:
197
198 =over 3
199
200 =item 1
201
202 If B<m> is used in context of (i.e. right after the) years,
203 months, weeks, or days it is assumed to mean B<months>, while
204 in the context of hours, minutes, and seconds it means minutes.
205 (e.g., in -1y6m or +3w1m B<m> means B<months>, while in
206 -3h20m or +5s2m B<m> means B<minutes>)
207
208 =item 2
209
210 Out of context (i.e. right after the B<+> or B<-> sign) the
211 meaning of B<m> is guessed from the number it directly follows.
212 Currently, if the number absolute value is below 25 it is assumed
213 that B<m> means B<months>, otherwise it is treated as B<minutes>.
214 (e.g., -25m == -25 minutes, while +24m == +24 months)
215
216 =back
217
218 I<Final NOTES>: Time specification is case-insensitive.
219 Whitespace can be inserted freely or omitted altogether,
220 there are, however, cases when whitespace is required
221 (e.g., S<'midnight Thu'>). In this case you should either quote the
222 whole phrase to prevent it from being taken apart by your shell or use
223 '_' (underscore) or ',' (comma) which also count as whitespace
224 (e.g., midnight_Thu or midnight,Thu)
225
226
227 =head2 TIME SPECIFICATION EXAMPLES
228
229 I<Oct 12> -- October 12 this year
230
231 I<-1month> or I<-1m> -- current time of day, only a month before
232 (may yield surprises, see the NOTE3 above)
233
234 I<noon yesterday -3hours> -- yesterday morning; can be put also as I<9am-1day>
235
236 I<23:59 31.12.1999> -- 1 minute to the year 2000
237
238 I<12/31/99 11:59pm> -- 1 minute to the year 2000 for imperialists
239
240 I<12am 01/01/01> -- start of the new millennium
241
242 I<end-3weeks> or I<e-3w> -- 3 weeks before end time
243 (may be used as start time specification)
244
245 I<start+6hours> or I<s+6h> -- 6 hours after start time
246 (may be used as end time specification)
247
248 I<931225537> -- 18:45  July 5th, 1999
249 (yes, seconds since 1970 are valid as well)
250
251 I<19970703 12:45> -- 12:45  July 3th, 1997
252 (my favorite, and its even got an ISO number (8601))
253
254 =head1 AUTHOR
255
256 Tobias Oetiker <oetiker@ee.ethz.ch>