Code

Imported upstream version 1.4~rc2.
[pkg-rrdtool.git] / doc / rrdgraph_rpn.txt
index 5f022a444a91bd80ecd83d1e478471a3a1fa6625..327dc0d6629813faf8ab0f71d0e026160f6f20a6 100644 (file)
@@ -9,12 +9,12 @@ S\bSY\bYN\bNO\bOP\bPS\bSI\bIS\bS
        _\bR_\bP_\bN _\be_\bx_\bp_\br_\be_\bs_\bs_\bi_\bo_\bn:=_\bv_\bn_\ba_\bm_\be|_\bo_\bp_\be_\br_\ba_\bt_\bo_\br|_\bv_\ba_\bl_\bu_\be[,_\bR_\bP_\bN _\be_\bx_\bp_\br_\be_\bs_\bs_\bi_\bo_\bn]
 
 D\bDE\bES\bSC\bCR\bRI\bIP\bPT\bTI\bIO\bON\bN
-       If you have ever used a traditional HP calculator you already know R\bRP\bPN\bN.
-       The idea behind R\bRP\bPN\bN is that you have a stack and push your data onto
-       this stack. Whenever you execute an operation, it takes as many ele-
-       ments from the stack as needed. Pushing is done implicitly, so whenever
-       you specify a number or a variable, it gets pushed onto the stack auto-
-       matically.
+       If you have ever used a traditional HP calculator you already know R\bRP\bPN\bN
+       (Reverse Polish Notation).  The idea behind R\bRP\bPN\bN is that you have a
+       stack and push your data onto this stack. Whenever you execute an oper-
+       ation, 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.
 
        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
@@ -63,6 +63,8 @@ O\bOP\bPE\bER\bRA\bAT\bTO\bOR\bRS\bS
 
            Example: "A,B,C,IF" should be read as "if (A) then (B) else (C)"
 
+
+
        Comparing values
            M\bMI\bIN\bN,\b, M\bMA\bAX\bX
 
@@ -85,11 +87,19 @@ O\bOP\bPE\bER\bRA\bAT\bTO\bOR\bRS\bS
            Example: "CDEF:a=alpha,0,100,LIMIT" will return _\bu_\bn_\bk_\bn_\bo_\bw_\bn if alpha is
            lower than 0 or if it is higher than 100.
 
+
+
        Arithmetics
            +\b+,\b, -\b-,\b, *\b*,\b, /\b/,\b, %\b%
 
            Add, subtract, multiply, divide, modulo
 
+           A\bAD\bDD\bDN\bNA\bAN\bN
+
+           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.
+
            S\bSI\bIN\bN,\b, C\bCO\bOS\bS,\b, L\bLO\bOG\bG,\b, E\bEX\bXP\bP,\b, S\bSQ\bQR\bRT\bT
 
            Sine and cosine (input in radians), log and exp (natural loga-
@@ -139,7 +149,7 @@ O\bOP\bPE\bER\bRA\bAT\bTO\bOR\bRS\bS
 
            Example: "CDEF:x=a,b,c,d,4,AVG"
 
-           T\bTR\bRE\bEN\bND\bD
+           T\bTR\bRE\bEN\bND\bD,\b, T\bTR\bRE\bEN\bND\bDN\bNA\bAN\bN
 
            Create a "sliding window" average of another data series.
 
@@ -161,6 +171,88 @@ O\bOP\bPE\bER\bRA\bAT\bTO\bOR\bRS\bS
                 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)
 
+           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\bPR\bRE\bED\bDI\bIC\bCT\bT,\b, P\bPR\bRE\bED\bDI\bIC\bCT\bTS\bSI\bIG\bGM\bMA\bA
+
+           Create a "sliding window" average/sigma of another data series,
+           that also shifts the data series by given amounts of of time as
+           well
+
+           Usage - explicit stating shifts: CDEF:predict=<shift n>,...,<shift
+           1>,n,<window>,x,PREDICT CDEF:sigma=<shift n>,...,<shift 1>,n,<win-
+           dow>,x,PREDICTSIGMA
+
+           Usage - shifts defined as a base shift and a number of time this is
+           applied CDEF:predict=<shift multiplier>,-n,<window>,x,PREDICT
+           CDEF:sigma=<shift multiplier>,-n,<window>,x,PREDICTSIGMA
+
+           Example: CDEF:predict=172800,86400,2,1800,x,PREDICT
+
+           This will create a half-hour (1800 second) sliding window aver-
+           age/sigma of x, that average is essentially computed as shown here:
+
+            +---!---!---!---!---!---!---!---!---!---!---!---!---!---!---!---!---!--->
+                                                                                now
+                                                             shift 1        t0
+                                                    <----------------------->
+                                          window
+                                    <--------------->
+                                                  shift 2
+                            <----------------------------------------------->
+                  window
+            <--------------->
+                                                                 shift 1        t1
+                                                        <----------------------->
+                                              window
+                                        <--------------->
+                                                       shift 2
+                                <----------------------------------------------->
+                      window
+                <--------------->
+
+            Value at sample (t0) will be the average between (t0-shift1-window) and (t0-shift1)
+                                                 and between (t0-shift2-window) and (t0-shift2)
+            Value at sample (t1) will be the average between (t1-shift1-window) and (t1-shift1)
+                                                 and between (t1-shift2-window) and (t1-shift2)
+
+           The function is by design NAN-safe.  This also allows for extrapo-
+           lation into the future (say a few days) - you may need to define
+           the data series whit the optional start= parameter, so that the
+           source data series has enough data to provide prediction also at
+           the beginning of a graph...
+
+           Here an example, that will create a 10 day graph that also shows
+           the prediction 3 days into the future with its uncertainty value
+           (as defined by avg+-4*sigma) This also shows if the prediction is
+           exceeded at a certain point.
+
+           rrdtool graph image.png --imgformat=PNG \
+            --start=-7days --end=+3days --width=1000 --height=200
+           --alt-autoscale-max \
+            DEF:value=value.rrd:value:AVERAGE:start=-14days \
+            LINE1:value#ff0000:value \
+            CDEF:predict=86400,-7,1800,value,PREDICT \
+            CDEF:sigma=86400,-7,1800,value,PREDICTSIGMA \
+            CDEF:upper=predict,sigma,3,*,+ \
+            CDEF:lower=predict,sigma,3,*,- \
+            LINE1:predict#00ff00:prediction \
+            LINE1:upper#0000ff:upper\ certainty\ limit \
+            LINE1:lower#0000ff:lower\ certainty\ limit \
+            CDEF:exceeds=value,UN,0,value,lower,upper,LIMIT,UN,IF \
+            TICK:exceeds#aa000080:1
+
+           Note: Experience has shown that a factor between 3 and 5 to scale
+           sigma is a good discriminator to detect abnormal behaviour. This
+           obviously depends also on the type of data and how "noisy" the data
+           series is.
+
+           This prediction can only be used for short term extrapolations -
+           say a few days into the future-
+
        Special values
            U\bUN\bNK\bKN\bN
 
@@ -219,6 +311,8 @@ O\bOP\bPE\bER\bRA\bAT\bTO\bOR\bRS\bS
            Duplicate the top element, remove the top element, exchange the two
            top elements.
 
+
+
 V\bVA\bAR\bRI\bIA\bAB\bBL\bLE\bES\bS
        These operators work only on V\bVD\bDE\bEF\bF statements. Note that currently ONLY
        these work for V\bVD\bDE\bEF\bF.
@@ -229,6 +323,11 @@ V\bVA\bAR\bRI\bIA\bAB\bBL\bLE\bES\bS
 
            Example: "VDEF:avg=mydata,AVERAGE"
 
+       STDEV
+           Returns the standard deviation of the values.
+
+           Example: "VDEF:stdev=mydata,STDEV"
+
        LAST, FIRST
            Return the last/first value including its time.  The time for FIRST
            is actually the start of the corresponding interval, whereas LAST
@@ -244,18 +343,20 @@ V\bVA\bAR\bRI\bIA\bAB\bBL\bLE\bES\bS
 
            Example: "VDEF:total=mydata,TOTAL"
 
-       PERCENT
+       PERCENT, PERCENTNAN
            This should follow a D\bDE\bEF\bF or C\bCD\bDE\bEF\bF _\bv_\bn_\ba_\bm_\be. The _\bv_\bn_\ba_\bm_\be 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 _\bp_\be_\br_\bc_\be_\bn_\bt_\ba_\bg_\be percent of the values is lower or equal than the
-           result.  _\bU_\bn_\bk_\bn_\bo_\bw_\bn values are considered lower than any finite number
-           for this purpose so if this operator returns an _\bu_\bn_\bk_\bn_\bo_\bw_\bn you have
-           quite a lot of them in your data.  I\bIn\bnf\bfinite numbers are lesser, or
-           more, than the finite numbers and are always more than the _\bU_\bn_\bk_\bn_\bo_\bw_\bn
-           numbers.  (NaN < -INF < finite values < INF)
+           result.  For PERCENTNAN _\bU_\bn_\bk_\bn_\bo_\bw_\bn values are ignored, but for PERCENT
+           _\bU_\bn_\bk_\bn_\bo_\bw_\bn values are considered lower than any finite number for this
+           purpose so if this operator returns an _\bu_\bn_\bk_\bn_\bo_\bw_\bn you have quite a lot
+           of them in your data.  I\bIn\bnf\bfinite numbers are lesser, or more, than
+           the finite numbers and are always more than the _\bU_\bn_\bk_\bn_\bo_\bw_\bn numbers.
+           (NaN < -INF < finite values < INF)
 
            Example: "VDEF:perc95=mydata,95,PERCENT"
+                    "VDEF:percnan95=mydata,95,PERCENTNAN"
 
        LSLSLOPE, LSLINT, LSLCORREL
            Return the parameters for a L\bLeast S\bSquares L\bLine _\b(_\by _\b= _\bm_\bx _\b+_\bb_\b) which
@@ -280,8 +381,9 @@ S\bSE\bEE\bE A\bAL\bLS\bSO\bO
 A\bAU\bUT\bTH\bHO\bOR\bR
        Program by Tobias Oetiker <tobi@oetiker.ch>
 
-       This manual page by Alex van den Bogaerdt <alex@ergens.op.het.net>
+       This manual page by Alex van den Bogaerdt <alex@vandenbogaerdt.nl> with
+       corrections and/or additions by several people
 
 
 
-1.2.27                            2008-02-17                   RRDGRAPH_RPN(1)
+1.3.99909060808                   2009-02-21                   RRDGRAPH_RPN(1)