Hi,
you can change format string for them. It is basically Java format string with one addition - format %*s will scale value automatically and display it as k, M, G, etc. So for traffic counters you can use format string
%*sbps
It will produce something like 1.37 Mbps for original value like 1370024.
Best regards,
Victor
you can change format string for them. It is basically Java format string with one addition - format %*s will scale value automatically and display it as k, M, G, etc. So for traffic counters you can use format string
%*sbps
It will produce something like 1.37 Mbps for original value like 1370024.
Best regards,
Victor