Code

Imported upstream version 1.3rc9.
[pkg-rrdtool.git] / doc / rrdgraph_rpn.html
index d5fccbbb015332149fb59920effe99d7c19f17f3..ef20291cda955eb90a863b4ff63a7e75105696fb 100644 (file)
@@ -70,173 +70,92 @@ would do <code>a = b, 3, +, 5, *</code> without the need for parentheses.</p>
 <hr />
 <h1><a name="operators">OPERATORS</a></h1>
 <dl>
-<dt><strong><a name="item_boolean_operators">Boolean operators</a></strong>
+<dt><strong><a name="item_boolean_operators">Boolean operators</a></strong></dt>
 
 <dd>
 <p><strong>LT, LE, GT, GE, EQ, NE</strong></p>
-</dd>
-<dd>
 <p>Pop two elements from the stack, compare them for the selected condition
 and return 1 for true or 0 for false. Comparing an <em>unknown</em> or an
 <em>infinite</em> value will always result in 0 (false).</p>
-</dd>
-<dd>
 <p><strong>UN, ISINF</strong></p>
-</dd>
-<dd>
 <p>Pop one element from the stack, compare this to <em>unknown</em> respectively
 to <em>positive or negative infinity</em>. Returns 1 for true or 0 for false.</p>
-</dd>
-<dd>
 <p><strong>IF</strong></p>
-</dd>
-<dd>
 <p>Pops three elements from the stack.  If the element popped last is 0
 (false), the value popped first is pushed back onto the stack,
 otherwise the value popped second is pushed back. This does, indeed,
 mean that any value other than 0 is considered to be true.</p>
-</dd>
-<dd>
 <p>Example: <code>A,B,C,IF</code> should be read as <code>if (A) then (B) else (C)</code></p>
-</dd>
-<dd>
 <p></p>
 </dd>
-</li>
-<dt><strong><a name="item_comparing_values">Comparing values</a></strong>
+<dt><strong><a name="item_comparing_values">Comparing values</a></strong></dt>
 
 <dd>
 <p><strong>MIN, MAX</strong></p>
-</dd>
-<dd>
 <p>Pops two elements from the stack and returns the smaller or larger,
 respectively.  Note that <em>infinite</em> is larger than anything else.
 If one of the input numbers is <em>unknown</em> then the result of the operation will be
 <em>unknown</em> too.</p>
-</dd>
-<dd>
 <p><strong>LIMIT</strong></p>
-</dd>
-<dd>
 <p>Pops two elements from the stack and uses them to define a range.
 Then it pops another element and if it falls inside the range, it
 is pushed back. If not, an <em>unknown</em> is pushed.</p>
-</dd>
-<dd>
 <p>The range defined includes the two boundaries (so: a number equal
 to one of the boundaries will be pushed back). If any of the three
 numbers involved is either <em>unknown</em> or <em>infinite</em> this function
 will always return an <em>unknown</em></p>
-</dd>
-<dd>
 <p>Example: <code>CDEF:a=alpha,0,100,LIMIT</code> will return <em>unknown</em> if
 alpha is lower than 0 or if it is higher than 100.</p>
-</dd>
-<dd>
 <p></p>
 </dd>
-</li>
-<dt><strong><a name="item_arithmetics">Arithmetics</a></strong>
+<dt><strong><a name="item_arithmetics">Arithmetics</a></strong></dt>
 
 <dd>
 <p><strong>+, -, *, /, %</strong></p>
-</dd>
-<dd>
 <p>Add, subtract, multiply, divide, modulo</p>
-</dd>
-<dd>
 <p><strong>ADDNAN</strong></p>
-</dd>
-<dd>
 <p>NAN-safe addition. If one parameter is NAN/UNKNOWN it'll be treated as
 zero. If both parameters are NAN/UNKNOWN, NAN/UNKNOWN will be returned.</p>
-</dd>
-<dd>
 <p><strong>SIN, COS, LOG, EXP, SQRT</strong></p>
-</dd>
-<dd>
 <p>Sine and cosine (input in radians), log and exp (natural logarithm),
 square root.</p>
-</dd>
-<dd>
 <p><strong>ATAN</strong></p>
-</dd>
-<dd>
 <p>Arctangent (output in radians).</p>
-</dd>
-<dd>
 <p><strong>ATAN2</strong></p>
-</dd>
-<dd>
 <p>Arctangent of y,x components (output in radians).
 This pops one element from the stack, the x (cosine) component, and then
 a second, which is the y (sine) component.
 It then pushes the arctangent of their ratio, resolving the ambiguity between
 quadrants.</p>
-</dd>
-<dd>
 <p>Example: <code>CDEF:angle=Y,X,ATAN2,RAD2DEG</code> will convert <code>X,Y</code>
 components into an angle in degrees.</p>
-</dd>
-<dd>
 <p><strong>FLOOR, CEIL</strong></p>
-</dd>
-<dd>
 <p>Round down or up to the nearest integer.</p>
-</dd>
-<dd>
 <p><strong>DEG2RAD, RAD2DEG</strong></p>
-</dd>
-<dd>
 <p>Convert angle in degrees to radians, or radians to degrees.</p>
-</dd>
-<dd>
 <p><strong>ABS</strong></p>
-</dd>
-<dd>
 <p>Take the absolute value.</p>
 </dd>
-</li>
-<dt><strong><a name="item_set_operations">Set Operations</a></strong>
+<dt><strong><a name="item_set_operations">Set Operations</a></strong></dt>
 
 <dd>
 <p><strong>SORT, REV</strong></p>
-</dd>
-<dd>
 <p>Pop one element from the stack.  This is the <em>count</em> of items to be sorted
 (or reversed).  The top <em>count</em> of the remaining elements are then sorted
 (or reversed) in place on the stack.</p>
-</dd>
-<dd>
 <p>Example: <code>CDEF:x=v1,v2,v3,v4,v5,v6,6,SORT,POP,5,REV,POP,+,+,+,4,/</code> will
 compute the average of the values v1 to v6 after removing the smallest and
 largest.</p>
-</dd>
-<dd>
 <p><strong>AVG</strong></p>
-</dd>
-<dd>
 <p>Pop one element (<em>count</em>) from the stack. Now pop <em>count</em> elements and build the
 average, ignoring all UNKNOWN values in the process.</p>
-</dd>
-<dd>
 <p>Example: <code>CDEF:x=a,b,c,d,4,AVG</code></p>
-</dd>
-<dd>
 <p><strong>TREND, TRENDNAN</strong></p>
-</dd>
-<dd>
 <p>Create a ``sliding window'' average of another data series.</p>
-</dd>
-<dd>
 <p>Usage:
 CDEF:smoothed=x,1800,TREND</p>
-</dd>
-<dd>
 <p>This will create a half-hour (1800 second) sliding window average of x.  The
 average is essentially computed as shown here:</p>
-</dd>
-<dd>
 <pre>
                  +---!---!---!---!---!---!---!---!---&gt;
                                                      now
@@ -246,105 +165,63 @@ average is essentially computed as shown here:</p>
                      &lt;---------------&gt;
                               delay      t2
                          &lt;---------------&gt;</pre>
-</dd>
-<dd>
 <pre>
      Value at sample (t0) will be the average between (t0-delay) and (t0)
      Value at sample (t1) will be the average between (t1-delay) and (t1)
      Value at sample (t2) will be the average between (t2-delay) and (t2)</pre>
-</dd>
-<dd>
 <p>TRENDNAN is - in contrast to TREND - NAN-safe. If you use TREND and one 
 source value is NAN the complete sliding window is affected. The TRENDNAN 
 operation ignores all NAN-values in a sliding window and computes the 
 average of the remaining values.</p>
 </dd>
-</li>
-<dt><strong><a name="item_special_values">Special values</a></strong>
+<dt><strong><a name="item_special_values">Special values</a></strong></dt>
 
 <dd>
 <p><strong>UNKN</strong></p>
-</dd>
-<dd>
 <p>Pushes an unknown value on the stack</p>
-</dd>
-<dd>
 <p><strong>INF, NEGINF</strong></p>
-</dd>
-<dd>
 <p>Pushes a positive or negative infinite value on the stack. When
 such a value is graphed, it appears at the top or bottom of the
 graph, no matter what the actual value on the y-axis is.</p>
-</dd>
-<dd>
 <p><strong>PREV</strong></p>
-</dd>
-<dd>
 <p>Pushes an <em>unknown</em> value if this is the first value of a data
 set or otherwise the result of this <strong>CDEF</strong> at the previous time
 step. This allows you to do calculations across the data.  This
 function cannot be used in <strong>VDEF</strong> instructions.</p>
-</dd>
-<dd>
 <p><strong>PREV(vname)</strong></p>
-</dd>
-<dd>
 <p>Pushes an <em>unknown</em> value if this is the first value of a data
 set or otherwise the result of the vname variable at the previous time
 step. This allows you to do calculations across the data. This
 function cannot be used in <strong>VDEF</strong> instructions.</p>
-</dd>
-<dd>
 <p><strong>COUNT</strong></p>
-</dd>
-<dd>
 <p>Pushes the number 1 if this is the first value of the data set, the
 number 2 if it is the second, and so on. This special value allows
 you to make calculations based on the position of the value within
 the data set. This function cannot be used in <strong>VDEF</strong> instructions.</p>
 </dd>
-</li>
-<dt><strong><a name="item_time">Time</a></strong>
+<dt><strong><a name="item_time">Time</a></strong></dt>
 
 <dd>
 <p>Time inside RRDtool is measured in seconds since the epoch. The
 epoch is defined to be <code>Thu&nbsp;Jan&nbsp;&nbsp;1&nbsp;00:00:00&nbsp;UTC&nbsp;1970</code>.</p>
-</dd>
-<dd>
 <p><strong>NOW</strong></p>
-</dd>
-<dd>
 <p>Pushes the current time on the stack.</p>
-</dd>
-<dd>
 <p><strong>TIME</strong></p>
-</dd>
-<dd>
 <p>Pushes the time the currently processed value was taken at onto the stack.</p>
-</dd>
-<dd>
 <p><strong>LTIME</strong></p>
-</dd>
-<dd>
 <p>Takes the time as defined by <strong>TIME</strong>, applies the time zone offset
 valid at that time including daylight saving time if your OS supports
 it, and pushes the result on the stack.  There is an elaborate example
 in the examples section below on how to use this.</p>
 </dd>
-</li>
-<dt><strong><a name="item_processing_the_stack_directly">Processing the stack directly</a></strong>
+<dt><strong><a name="item_processing_the_stack_directly">Processing the stack directly</a></strong></dt>
 
 <dd>
 <p><strong>DUP, POP, EXC</strong></p>
-</dd>
-<dd>
 <p>Duplicate the top element, remove the top element, exchange the two
 top elements.</p>
-</dd>
-<dd>
 <p></p>
 </dd>
-</li>
 </dl>
 <p>
 </p>
@@ -352,49 +229,37 @@ top elements.</p>
 <h1><a name="variables">VARIABLES</a></h1>
 <p>These operators work only on <strong>VDEF</strong> statements. Note that currently ONLY these work for <strong>VDEF</strong>.</p>
 <dl>
-<dt><strong><a name="item_maximum_2c_minimum_2c_average">MAXIMUM, MINIMUM, AVERAGE</a></strong>
+<dt><strong><a name="item_maximum_2c_minimum_2c_average">MAXIMUM, MINIMUM, AVERAGE</a></strong></dt>
 
 <dd>
 <p>Return the corresponding value, MAXIMUM and MINIMUM also return
 the first occurrence of that value in the time component.</p>
-</dd>
-<dd>
 <p>Example: <code>VDEF:avg=mydata,AVERAGE</code></p>
 </dd>
-</li>
-<dt><strong><a name="item_stdev">STDEV</a></strong>
+<dt><strong><a name="item_stdev">STDEV</a></strong></dt>
 
 <dd>
 <p>Returns the standard deviation of the values.</p>
-</dd>
-<dd>
 <p>Example: <code>VDEF:stdev=mydata,STDEV</code></p>
 </dd>
-</li>
-<dt><strong><a name="item_last_2c_first">LAST, FIRST</a></strong>
+<dt><strong><a name="item_last_2c_first">LAST, FIRST</a></strong></dt>
 
 <dd>
 <p>Return the last/first value including its time.  The time for
 FIRST is actually the start of the corresponding interval, whereas
 LAST returns the end of the corresponding interval.</p>
-</dd>
-<dd>
 <p>Example: <code>VDEF:first=mydata,FIRST</code></p>
 </dd>
-</li>
-<dt><strong><a name="item_total">TOTAL</a></strong>
+<dt><strong><a name="item_total">TOTAL</a></strong></dt>
 
 <dd>
 <p>Returns the rate from each defined time slot multiplied with the
 step size.  This can, for instance, return total bytes transfered
 when you have logged bytes per second. The time component returns
 the number of seconds.</p>
-</dd>
-<dd>
 <p>Example: <code>VDEF:total=mydata,TOTAL</code></p>
 </dd>
-</li>
-<dt><strong><a name="item_percent">PERCENT</a></strong>
+<dt><strong><a name="item_percent">PERCENT</a></strong></dt>
 
 <dd>
 <p>This should follow a <strong>DEF</strong> or <strong>CDEF</strong> <em>vname</em>. The <em>vname</em> is popped,
@@ -406,12 +271,9 @@ purpose so if this operator returns an <em>unknown</em> you have quite a lot
 of them in your data.  <strong>Inf</strong>inite numbers are lesser, or more, than the
 finite numbers and are always more than the <em>Unknown</em> numbers.
 (NaN &lt; -INF &lt; finite values &lt; INF)</p>
-</dd>
-<dd>
 <p>Example: <code>VDEF:perc95=mydata,95,PERCENT</code></p>
 </dd>
-</li>
-<dt><strong><a name="item_lslslope_2c_lslint_2c_lslcorrel">LSLSLOPE, LSLINT, LSLCORREL</a></strong>
+<dt><strong><a name="item_lslslope_2c_lslint_2c_lslcorrel">LSLSLOPE, LSLINT, LSLCORREL</a></strong></dt>
 
 <dd>
 <p>Return the parameters for a <strong>L</strong>east <strong>S</strong>quares <strong>L</strong>ine <em>(y = mx +b)</em> 
@@ -421,11 +283,8 @@ y-intercept <em>(b)</em>, which happens also to be the first data point on the
 graph. LSLCORREL is the Correlation Coefficient (also know as Pearson's 
 Product Moment Correlation Coefficient).  It will range from 0 to +/-1 
 and represents the quality of fit for the approximation.</p>
-</dd>
-<dd>
 <p>Example: <code>VDEF:slope=mydata,LSLSLOPE</code></p>
 </dd>
-</li>
 </dl>
 <p>
 </p>