summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 69d5769)
raw | patch | inline | side by side (parent: 69d5769)
author | alex <alex@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Thu, 26 Jul 2001 02:15:02 +0000 (02:15 +0000) | ||
committer | alex <alex@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Thu, 26 Jul 2001 02:15:02 +0000 (02:15 +0000) |
program/doc/rrdgraph_rpn.pod | patch | blob | history |
index 16c5996c4de33405d6317ade27eee328529f105f..f54bd381de2bf6e6a46b782fa56f4b27fc7f601b 100644 (file)
=item MAXIMUM, MINIMUM, AVERAGE
-Return the corresponding value
+Return the corresponding value, MAXIMUM and MINIMUM also return
+the first occurance of that value in the time component.
+
+Example: C<VDEF:avg=mydata,AVERAGE>
Z<>
=item LAST, FIRST
-Return the last,first value including its time
+Return the last,first value including its time. The time for
+FIRST is actually the start of the corresponding interval, where
+LASTs time component returns the end of the corresponding interval.
+
+Example: C<VDEF:first=mydata,FIRST>
+
+Z<>
+
+=item TOTAL
+
+Returns the rate from each defined timeslot 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 amount of seconds
+
+Example: C<VDEF:total=mydata,TOTAL>
Z<>
I<percentage> percent of the values is lower or equal than the result.
I<Unknown> values are considered lower than any finite number for this
purpose so if this operator returns an I<unknown> you have quite a lot
-of them in your data. I<Inf>inite numbers are lesser, or more, than the
+of them in your data. B<Inf>inite numbers are lesser, or more, than the
finite numbers and are always more than the I<Unknown> numbers.
Example: C<VDEF:perc95=mydata,95,PERCENT>