Sophie

Sophie

distrib > Fedora > 13 > i386 > media > os > by-pkgid > b1b8928202b1fab4893ff0a164f61b0a > files > 33

rrdtool-doc-1.3.8-6.fc13.i686.rpm

<?xml version="1.0" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>rrdgraph_rpn</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rev="made" href="mailto:root@localhost" />
</head>

<body style="background-color: white">


<!-- INDEX BEGIN -->
<div name="index">
<p><a name="__index__"></a></p>
<!--

<ul>

	<li><a href="#name">NAME</a></li>
	<li><a href="#synopsis">SYNOPSIS</a></li>
	<li><a href="#description">DESCRIPTION</a></li>
	<li><a href="#operators">OPERATORS</a></li>
	<li><a href="#variables">VARIABLES</a></li>
	<li><a href="#see_also">SEE ALSO</a></li>
	<li><a href="#author">AUTHOR</a></li>
</ul>

-->


</div>
<!-- INDEX END -->

<p>
</p>
<h1><a name="name">NAME</a></h1>
<p>rrdgraph_rpn - About RPN Math in rrdtool graph</p>
<p>
</p>
<hr />
<h1><a name="synopsis">SYNOPSIS</a></h1>
<p><em>RPN expression</em>:=<em>vname</em>|<em>operator</em>|<em>value</em>[,<em>RPN expression</em>]</p>
<p>
</p>
<hr />
<h1><a name="description">DESCRIPTION</a></h1>
<p>If you have ever used a traditional HP calculator you already know
<strong>RPN</strong> (Reverse Polish Notation).
The idea behind <strong>RPN</strong> is that you have a stack and push
your data onto this stack. Whenever you execute an operation, it
takes as many elements from the stack as needed. Pushing is done
implicitly, so whenever you specify a number or a variable, it gets
pushed onto the stack automatically.</p>
<p>At the end of the calculation there should be one and only one value left on
the stack.  This is the outcome of the function and this is what is put into
the <em>vname</em>.  For <strong>CDEF</strong> instructions, the stack is processed for each
data point on the graph. <strong>VDEF</strong> instructions work on an entire data set in
one run. Note, that currently <strong>VDEF</strong> instructions only support a limited
list of functions.</p>
<p>Example: <code>VDEF:maximum=mydata,MAXIMUM</code></p>
<p>This will set variable &quot;maximum&quot; which you now can use in the rest
of your RRD script.</p>
<p>Example: <code>CDEF:mydatabits=mydata,8,*</code></p>
<p>This means:  push variable <em>mydata</em>, push the number 8, execute
the operator <em>*</em>. The operator needs two elements and uses those
to return one value.  This value is then stored in <em>mydatabits</em>.
As you may have guessed, this instruction means nothing more than
<em>mydatabits = mydata * 8</em>.  The real power of <strong>RPN</strong> lies in the
fact that it is always clear in which order to process the input.
For expressions like <code>a = b + 3 * 5</code> you need to multiply 3 with
5 first before you add <em>b</em> to get <em>a</em>. However, with parentheses
you could change this order: <code>a = (b + 3) * 5</code>. In <strong>RPN</strong>, you
would do <code>a = b, 3, +, 5, *</code> without the need for parentheses.</p>
<p>
</p>
<hr />
<h1><a name="operators">OPERATORS</a></h1>
<dl>
<dt><strong><a name="boolean_operators" class="item">Boolean operators</a></strong></dt>

<dd>
<p><strong>LT, LE, GT, GE, EQ, NE</strong></p>
<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>
<p><strong>UN, ISINF</strong></p>
<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>
<p><strong>IF</strong></p>
<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>
<p>Example: <code>A,B,C,IF</code> should be read as <code>if (A) then (B) else (C)</code></p>
<p></p>
</dd>
<dt><strong><a name="comparing_values" class="item">Comparing values</a></strong></dt>

<dd>
<p><strong>MIN, MAX</strong></p>
<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>
<p><strong>LIMIT</strong></p>
<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>
<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>
<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>
<p></p>
</dd>
<dt><strong><a name="arithmetics" class="item">Arithmetics</a></strong></dt>

<dd>
<p><strong>+, -, *, /, %</strong></p>
<p>Add, subtract, multiply, divide, modulo</p>
<p><strong>ADDNAN</strong></p>
<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>
<p><strong>SIN, COS, LOG, EXP, SQRT</strong></p>
<p>Sine and cosine (input in radians), log and exp (natural logarithm),
square root.</p>
<p><strong>ATAN</strong></p>
<p>Arctangent (output in radians).</p>
<p><strong>ATAN2</strong></p>
<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>
<p>Example: <code>CDEF:angle=Y,X,ATAN2,RAD2DEG</code> will convert <code>X,Y</code>
components into an angle in degrees.</p>
<p><strong>FLOOR, CEIL</strong></p>
<p>Round down or up to the nearest integer.</p>
<p><strong>DEG2RAD, RAD2DEG</strong></p>
<p>Convert angle in degrees to radians, or radians to degrees.</p>
<p><strong>ABS</strong></p>
<p>Take the absolute value.</p>
</dd>
<dt><strong><a name="set_operations" class="item">Set Operations</a></strong></dt>

<dd>
<p><strong>SORT, REV</strong></p>
<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>
<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>
<p><strong>AVG</strong></p>
<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>
<p>Example: <code>CDEF:x=a,b,c,d,4,AVG</code></p>
<p><strong>TREND, TRENDNAN</strong></p>
<p>Create a &quot;sliding window&quot; average of another data series.</p>
<p>Usage:
CDEF:smoothed=x,1800,TREND</p>
<p>This will create a half-hour (1800 second) sliding window average of x.  The
average is essentially computed as shown here:</p>
<pre>
                 +---!---!---!---!---!---!---!---!---&gt;
                                                     now
                       delay     t0
                 &lt;---------------&gt;
                         delay       t1
                     &lt;---------------&gt;
                              delay      t2
                         &lt;---------------&gt;</pre>
<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>
<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>
<dt><strong><a name="special_values" class="item">Special values</a></strong></dt>

<dd>
<p><strong>UNKN</strong></p>
<p>Pushes an unknown value on the stack</p>
<p><strong>INF, NEGINF</strong></p>
<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>
<p><strong>PREV</strong></p>
<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>
<p><strong>PREV(vname)</strong></p>
<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>
<p><strong>COUNT</strong></p>
<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>
<dt><strong><a name="time" class="item">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>
<p><strong>NOW</strong></p>
<p>Pushes the current time on the stack.</p>
<p><strong>TIME</strong></p>
<p>Pushes the time the currently processed value was taken at onto the stack.</p>
<p><strong>LTIME</strong></p>
<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>
<dt><strong><a name="processing_the_stack_directly" class="item">Processing the stack directly</a></strong></dt>

<dd>
<p><strong>DUP, POP, EXC</strong></p>
<p>Duplicate the top element, remove the top element, exchange the two
top elements.</p>
<p></p>
</dd>
</dl>
<p>
</p>
<hr />
<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="maximum_minimum_average" class="item">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>
<p>Example: <code>VDEF:avg=mydata,AVERAGE</code></p>
</dd>
<dt><strong><a name="stdev" class="item">STDEV</a></strong></dt>

<dd>
<p>Returns the standard deviation of the values.</p>
<p>Example: <code>VDEF:stdev=mydata,STDEV</code></p>
</dd>
<dt><strong><a name="last_first" class="item">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>
<p>Example: <code>VDEF:first=mydata,FIRST</code></p>
</dd>
<dt><strong><a name="total" class="item">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>
<p>Example: <code>VDEF:total=mydata,TOTAL</code></p>
</dd>
<dt><strong><a name="percent" class="item">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,
another number is popped which is a certain percentage (0..100). The
data set is then sorted and the value returned is chosen such that
<em>percentage</em> percent of the values is lower or equal than the result.
<em>Unknown</em> values are considered lower than any finite number for this
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>
<p>Example: <code>VDEF:perc95=mydata,95,PERCENT</code></p>
</dd>
<dt><strong><a name="lslslope_lslint_lslcorrel" class="item">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> 
which approximate the provided dataset.  LSLSLOPE is the slope <em>(m)</em> of
the line related to the COUNT position of the data.  LSLINT is the 
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>
<p>Example: <code>VDEF:slope=mydata,LSLSLOPE</code></p>
</dd>
</dl>
<p>
</p>
<hr />
<h1><a name="see_also">SEE ALSO</a></h1>
<p><a href="././rrdgraph.html">the rrdgraph manpage</a> gives an overview of how <strong>rrdtool graph</strong> works.
<a href="././rrdgraph_data.html">the rrdgraph_data manpage</a> describes <strong>DEF</strong>,<strong>CDEF</strong> and <strong>VDEF</strong> in detail.
<a href="././rrdgraph_rpn.html">the rrdgraph_rpn manpage</a> describes the <strong>RPN</strong> language used in the <strong>?DEF</strong> statements.
<a href="././rrdgraph_graph.html">the rrdgraph_graph manpage</a> page describes all of the graph and print functions.</p>
<p>Make sure to read <a href="././rrdgraph_examples.html">the rrdgraph_examples manpage</a> for tips&amp;tricks.</p>
<p>
</p>
<hr />
<h1><a name="author">AUTHOR</a></h1>
<p>Program by Tobias Oetiker &lt;<a href="mailto:tobi@oetiker.ch">tobi@oetiker.ch</a>&gt;</p>
<p>This manual page by Alex van den Bogaerdt &lt;<a href="mailto:alex@vandenbogaerdt.nl">alex@vandenbogaerdt.nl</a>&gt;
with corrections and/or additions by several people</p>

</body>

</html>