X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=doc%2Frrdgraph_rpn.src;h=9e6f70ed0579c4c7b98555a9e592286bbbb7543d;hb=d50afc217aaec57e418a55bbe2d20fe996c6e026;hp=ae1a91b80b62eaaaf374c8def1e336681c634619;hpb=0209ff81818995fcd2e2b7080c0ca504fa14d949;p=rrdtool.git diff --git a/doc/rrdgraph_rpn.src b/doc/rrdgraph_rpn.src index ae1a91b..9e6f70e 100644 --- a/doc/rrdgraph_rpn.src +++ b/doc/rrdgraph_rpn.src @@ -1,10 +1,16 @@ -=include name +=head1 NAME + +=cut + +WARNING: DO NOT EDIT THE POD FILES. THEY ARE AUTO-GENERATED + +=pod + +rrdgraph_rpn - About RPN Math in rrdtool graph =head1 SYNOPSIS -IRPN expressionE> := -IvnameE>|IoperatorE>|IvalueE> -[ , IRPN expressionE>] +I:=I|I|I[,I] =head1 DESCRIPTION @@ -21,6 +27,11 @@ this is what is put into the I. For B instructions, the stack is processed for each data point on the graph. B instructions work on an entire data set in one run. +Example: C + +This will set variable "maximum" which you now can use in the rest +of your RRD script. + Example: C This means: push variable I, push the number 8, execute @@ -56,9 +67,7 @@ B Pops three elements from the stack. If the last element is 0 (false), the first value is pushed back onto the stack, otherwise the second popped value is pushed back. This does, indeed, mean that any value -other than 0 is considered true. -I +other than 0 is considered to be true. Example: C should be read as C @@ -108,7 +117,7 @@ Round down,up to the nearest integer Z<> -=item Ordering Operations +=item Set Operations B @@ -120,6 +129,30 @@ Example: C will compute the average of the values v1..v6 after removing the smallest and largest. +B + +Create a "sliding window" average of another data series. + +Usage: +CDEF:smoothed=x,1800,TREND + +This will create a half-hour (1800 second) sliding window average of x. The +average is essentially computed as shown here: + + +---!---!---!---!---!---!---!---!---> + now + delay t0 + <---------------> + delay t1 + <---------------> + delay t2 + <---------------> + + + 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) + =item Special values B @@ -160,41 +193,21 @@ Z<> Time inside RRDtool is measured in seconds since the epoch. This epoch is defined to be S>. -Z<> - -=over 4 - -=item NOW +B Pushes the current time on the stack. -Z<> - -=item TIME +B