>     "VDEF:in_avg=in,LAST",
>     "VDEF:out_avg=out,LAST",
>     "GPRINT:in_avg:Speed IN\\: \%6.2lf\%S kbyte",
>     "GPRINT:out_avg: OUT\\: \%6.2lf\%s kbyte",

This is not right.  The %s in the GPRINT is replaced with the magnitude prefix 
(k,M,G) so you should use the standard unit as the suffix.  Else, youll see '1k 
kbyte' if the value is 1000 and '1 kbyte' if the value is 1. You should use:

>     "GPRINT:out_avg: OUT\\: \%6.2lf \%sbyte",

Steve

Steve Shipway
ITS Unix Services Design Lead
University of Auckland, New Zealand
Floor 1, 58 Symonds Street, Auckland
Phone: +64 (0)9 3737599 ext 86487
DDI: +64 (0)9 924 6487
Mobile: +64 (0)21 753 189
Email: [email protected]
 Please consider the environment before printing this e-mail 


Attachment: smime.p7s
Description: S/MIME cryptographic signature

_______________________________________________
rrd-users mailing list
[email protected]
https://lists.oetiker.ch/cgi-bin/listinfo/rrd-users

Reply via email to