Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: extended the options documentation a little

Table of Contents

Summary

NMIS8 uses the RRDTool time series database tool for data storage and graphing. When RRDTool has to represent very small or very large numbers, it will normally use SI units instead of showing many decimal places.  The The following table summarises those units.

...

If you find this feature undesirable (e.g. because the graph is for percentages), then there are two options for you: you can disable the unit autoscaling, or you can give the graph a fixed y-axis range. Of the two choices, disabling the automatic scaling has less potential for unintended side-effects, but it is still highly advisable that you read the relevant documentation on rrdtool graph options before making that choice.

Unit autoscaling

You can adjust the relevant graph definitions to NOT not use unit autoscaling. Find the graph file you want to adjust in /usr/local/nmis8/models, and open it with an editor. Locate the options section, and add the "--units-exponent" setting to both standard and small graph definitions, like in the example below:

Code Block
# ... header lines
%hash = (
# ...
   'option' => {
       'standard' => [
           '--units-exponent','0',
           'DEF:ifInUcastPkts=$database:ifInUcastPkts:AVERAGE',
# ... lots of graph definition statement lines
		],
        'small' => [
            '--units-exponent','0',
            'DEF:ifInUcastPkts=$database:ifInUcastPkts:AVERAGE',
# ...

Fixed Y-Axis Range

As above you need to find the relevant graph file, open it with an editor, and change the relevant option section to include lower-limit and upper-limit, and possibly rigid as well.

The example below is for a fixed-range 0..100 percent graph:

Code Block
'option' => {
  'standard' => [
    '--upper-limit','100',
    '--lower-limit','0',
    '--rigid',