Code

rpn compare operators CAN return unknown ... (#293)
[rrdtool-all.git] / program / doc / rrdgraph_rpn.pod
1 =head1 NAME
3 rrdgraph_rpn - About RPN Math in rrdtool graph
5 =head1 SYNOPSIS
7 I<RPN expression>:=I<vname>|I<operator>|I<value>[,I<RPN expression>]
9 =head1 DESCRIPTION
11 If you have ever used a traditional HP calculator you already know
12 B<RPN> (Reverse Polish Notation).
13 The idea behind B<RPN> is that you have a stack and push
14 your data onto this stack. Whenever you execute an operation, it
15 takes as many elements from the stack as needed. Pushing is done
16 implicitly, so whenever you specify a number or a variable, it gets
17 pushed onto the stack automatically.
19 At the end of the calculation there should be one and only one value left on
20 the stack.  This is the outcome of the function and this is what is put into
21 the I<vname>.  For B<CDEF> instructions, the stack is processed for each
22 data point on the graph. B<VDEF> instructions work on an entire data set in
23 one run. Note, that currently B<VDEF> instructions only support a limited
24 list of functions.
26 Example: C<VDEF:maximum=mydata,MAXIMUM>
28 This will set variable "maximum" which you now can use in the rest
29 of your RRD script.
31 Example: C<CDEF:mydatabits=mydata,8,*>
33 This means:  push variable I<mydata>, push the number 8, execute
34 the operator I<*>. The operator needs two elements and uses those
35 to return one value.  This value is then stored in I<mydatabits>.
36 As you may have guessed, this instruction means nothing more than
37 I<mydatabits = mydata * 8>.  The real power of B<RPN> lies in the
38 fact that it is always clear in which order to process the input.
39 For expressions like C<a = b + 3 * 5> you need to multiply 3 with
40 5 first before you add I<b> to get I<a>. However, with parentheses
41 you could change this order: C<a = (b + 3) * 5>. In B<RPN>, you
42 would do C<a = b, 3, +, 5, *> without the need for parentheses.
44 =head1 OPERATORS
46 =over 4
48 =item Boolean operators
50 B<LT, LE, GT, GE, EQ, NE>
52 Pop two elements from the stack, compare them for the selected condition
53 and return 1 for true or 0 for false. Comparing an I<unknown> or an
54 I<infinite> value will result in I<unknown> returned ... which will also be
55 treated as false by the B<IF> call.
57 B<UN, ISINF>
59 Pop one element from the stack, compare this to I<unknown> respectively
60 to I<positive or negative infinity>. Returns 1 for true or 0 for false.
62 B<IF>
64 Pops three elements from the stack.  If the element popped last is 0
65 (false), the value popped first is pushed back onto the stack,
66 otherwise the value popped second is pushed back. This does, indeed,
67 mean that any value other than 0 is considered to be true.
69 Example: C<A,B,C,IF> should be read as C<if (A) then (B) else (C)>
71 Z<>
73 =item Comparing values
75 B<MIN, MAX>
77 Pops two elements from the stack and returns the smaller or larger,
78 respectively.  Note that I<infinite> is larger than anything else.
79 If one of the input numbers is I<unknown> then the result of the operation will be
80 I<unknown> too.
82 B<LIMIT>
84 Pops two elements from the stack and uses them to define a range.
85 Then it pops another element and if it falls inside the range, it
86 is pushed back. If not, an I<unknown> is pushed.
88 The range defined includes the two boundaries (so: a number equal
89 to one of the boundaries will be pushed back). If any of the three
90 numbers involved is either I<unknown> or I<infinite> this function
91 will always return an I<unknown>
93 Example: C<CDEF:a=alpha,0,100,LIMIT> will return I<unknown> if
94 alpha is lower than 0 or if it is higher than 100.
96 Z<>
98 =item Arithmetics
100 B<+, -, *, /, %>
102 Add, subtract, multiply, divide, modulo
104 B<ADDNAN>
106 NAN-safe addition. If one parameter is NAN/UNKNOWN it'll be treated as
107 zero. If both parameters are NAN/UNKNOWN, NAN/UNKNOWN will be returned.
109 B<SIN, COS, LOG, EXP, SQRT>
111 Sine and cosine (input in radians), log and exp (natural logarithm),
112 square root.
114 B<ATAN>
116 Arctangent (output in radians).
118 B<ATAN2>
120 Arctangent of y,x components (output in radians).
121 This pops one element from the stack, the x (cosine) component, and then
122 a second, which is the y (sine) component.
123 It then pushes the arctangent of their ratio, resolving the ambiguity between
124 quadrants.
126 Example: C<CDEF:angle=Y,X,ATAN2,RAD2DEG> will convert C<X,Y>
127 components into an angle in degrees.
129 B<FLOOR, CEIL>
131 Round down or up to the nearest integer.
133 B<DEG2RAD, RAD2DEG>
135 Convert angle in degrees to radians, or radians to degrees.
137 B<ABS>
139 Take the absolute value.
141 =item Set Operations
143 B<SORT, REV>
145 Pop one element from the stack.  This is the I<count> of items to be sorted
146 (or reversed).  The top I<count> of the remaining elements are then sorted
147 (or reversed) in place on the stack.
149 Example: C<CDEF:x=v1,v2,v3,v4,v5,v6,6,SORT,POP,5,REV,POP,+,+,+,4,/> will
150 compute the average of the values v1 to v6 after removing the smallest and
151 largest.
153 B<AVG>
155 Pop one element (I<count>) from the stack. Now pop I<count> elements and build the
156 average, ignoring all UNKNOWN values in the process.
158 Example: C<CDEF:x=a,b,c,d,4,AVG>
160 B<TREND, TRENDNAN>
162 Create a "sliding window" average of another data series.
164 Usage:
165 CDEF:smoothed=x,1800,TREND
167 This will create a half-hour (1800 second) sliding window average of x.  The
168 average is essentially computed as shown here:
170                  +---!---!---!---!---!---!---!---!--->
171                                                      now
172                        delay     t0
173                  <--------------->
174                          delay       t1
175                      <--------------->
176                               delay      t2
177                          <--------------->
180      Value at sample (t0) will be the average between (t0-delay) and (t0)
181      Value at sample (t1) will be the average between (t1-delay) and (t1)
182      Value at sample (t2) will be the average between (t2-delay) and (t2)
184 TRENDNAN is - in contrast to TREND - NAN-safe. If you use TREND and one 
185 source value is NAN the complete sliding window is affected. The TRENDNAN 
186 operation ignores all NAN-values in a sliding window and computes the 
187 average of the remaining values.
190 =item Special values
192 B<UNKN>
194 Pushes an unknown value on the stack
196 B<INF, NEGINF>
198 Pushes a positive or negative infinite value on the stack. When
199 such a value is graphed, it appears at the top or bottom of the
200 graph, no matter what the actual value on the y-axis is.
202 B<PREV>
204 Pushes an I<unknown> value if this is the first value of a data
205 set or otherwise the result of this B<CDEF> at the previous time
206 step. This allows you to do calculations across the data.  This
207 function cannot be used in B<VDEF> instructions.
209 B<PREV(vname)>
211 Pushes an I<unknown> value if this is the first value of a data
212 set or otherwise the result of the vname variable at the previous time
213 step. This allows you to do calculations across the data. This
214 function cannot be used in B<VDEF> instructions.
216 B<COUNT>
218 Pushes the number 1 if this is the first value of the data set, the
219 number 2 if it is the second, and so on. This special value allows
220 you to make calculations based on the position of the value within
221 the data set. This function cannot be used in B<VDEF> instructions.
223 =item Time
225 Time inside RRDtool is measured in seconds since the epoch. The
226 epoch is defined to be S<C<Thu Jan  1 00:00:00 UTC 1970>>.
228 B<NOW>
230 Pushes the current time on the stack.
232 B<TIME>
234 Pushes the time the currently processed value was taken at onto the stack.
236 B<LTIME>
238 Takes the time as defined by B<TIME>, applies the time zone offset
239 valid at that time including daylight saving time if your OS supports
240 it, and pushes the result on the stack.  There is an elaborate example
241 in the examples section below on how to use this.
243 =item Processing the stack directly
245 B<DUP, POP, EXC>
247 Duplicate the top element, remove the top element, exchange the two
248 top elements.
250 Z<>
252 =back
254 =head1 VARIABLES
256 These operators work only on B<VDEF> statements. Note that currently ONLY these work for B<VDEF>.
258 =over 4
260 =item MAXIMUM, MINIMUM, AVERAGE
262 Return the corresponding value, MAXIMUM and MINIMUM also return
263 the first occurrence of that value in the time component.
265 Example: C<VDEF:avg=mydata,AVERAGE>
267 =item STDEV
269 Returns the standard deviation of the values.
271 Example: C<VDEF:stdev=mydata,STDEV>
273 =item LAST, FIRST
275 Return the last/first value including its time.  The time for
276 FIRST is actually the start of the corresponding interval, whereas
277 LAST returns the end of the corresponding interval.
279 Example: C<VDEF:first=mydata,FIRST>
281 =item TOTAL
283 Returns the rate from each defined time slot multiplied with the
284 step size.  This can, for instance, return total bytes transfered
285 when you have logged bytes per second. The time component returns
286 the number of seconds.
288 Example: C<VDEF:total=mydata,TOTAL>
290 =item PERCENT
292 This should follow a B<DEF> or B<CDEF> I<vname>. The I<vname> is popped,
293 another number is popped which is a certain percentage (0..100). The
294 data set is then sorted and the value returned is chosen such that
295 I<percentage> percent of the values is lower or equal than the result.
296 I<Unknown> values are considered lower than any finite number for this
297 purpose so if this operator returns an I<unknown> you have quite a lot
298 of them in your data.  B<Inf>inite numbers are lesser, or more, than the
299 finite numbers and are always more than the I<Unknown> numbers.
300 (NaN E<lt> -INF E<lt> finite values E<lt> INF)
302 Example: C<VDEF:perc95=mydata,95,PERCENT>
304 =item LSLSLOPE, LSLINT, LSLCORREL
306 Return the parameters for a B<L>east B<S>quares B<L>ine I<(y = mx +b)> 
307 which approximate the provided dataset.  LSLSLOPE is the slope I<(m)> of
308 the line related to the COUNT position of the data.  LSLINT is the 
309 y-intercept I<(b)>, which happens also to be the first data point on the 
310 graph. LSLCORREL is the Correlation Coefficient (also know as Pearson's 
311 Product Moment Correlation Coefficient).  It will range from 0 to +/-1 
312 and represents the quality of fit for the approximation.   
314 Example: C<VDEF:slope=mydata,LSLSLOPE>
316 =back
318 =head1 SEE ALSO
320 L<rrdgraph> gives an overview of how B<rrdtool graph> works.
321 L<rrdgraph_data> describes B<DEF>,B<CDEF> and B<VDEF> in detail.
322 L<rrdgraph_rpn> describes the B<RPN> language used in the B<?DEF> statements.
323 L<rrdgraph_graph> page describes all of the graph and print functions.
325 Make sure to read L<rrdgraph_examples> for tipsE<amp>tricks.
327 =head1 AUTHOR
329 Program by Tobias Oetiker E<lt>tobi@oetiker.chE<gt>
331 This manual page by Alex van den Bogaerdt E<lt>alex@vandenbogaerdt.nlE<gt>
332 with corrections and/or additions by several people