On 5/26/06, Lars Troen <[EMAIL PROTECTED]> wrote: > > Iwant to show numbers with my graphs in "clean" numbers. I'm now having > entries like 1000m, 80k etc. I would rather like to see these as 1 and > 80000. What would the formatting be for this? I'm currently having my > GPRINT like this: > GPRINT:valueXX:AVERAGE:\t\: %2.0lf %s\n > > Lars > -- > Unsubscribe mailto:[EMAIL PROTECTED] > Help mailto:[EMAIL PROTECTED] > Archive http://lists.ee.ethz.ch/rrd-users > WebAdmin http://lists.ee.ethz.ch/lsg2.cgi > > (From the rrdgraph man page) [-X--units-exponent value] This sets the 10**exponent scaling of the y-axis values. Normally, values will be scaled to the appropriate units (k, M, etc.). However, you may wish to display units always in k (Kilo, 10e3) even if the data is in the M (Mega, 10e6) range, for instance. Value should be an integer which is a multiple of 3 between -18 and 18 inclusively. It is the exponent on the units you wish to use. For example, use 3 to display the y-axis values in k (Kilo, 10e3, thousands), use -6 to display the y-axis values in u (Micro, 10e-6, millionths). Use a value of 0 to prevent any scaling of the y-axis values.
So, you need to use -X 0 as a command line option. Shawn Asmussen -- Unsubscribe mailto:[EMAIL PROTECTED] Help mailto:[EMAIL PROTECTED] Archive http://lists.ee.ethz.ch/rrd-users WebAdmin http://lists.ee.ethz.ch/lsg2.cgi
