You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

WAN Utilisation Distribution Report

New in version 3.1.8.

The WAN Utilisation Distribution Report displays the combined, input and output utilisation frequency distributions for configured distribution groups.

Two configured distribution groups are provided by default:
'Default WAN Distribution Levels Descending' and 'Default WAN Distribution Levels Ascending'.
The default groupings are: '<=30%', '>30% and <=70%', '>70% and <=90%' and '>90%'. 

By adding distribution grouping in the format provided for the default options under "report_wan_distributions" in opCommon.nmis, customised groupings can be added to the opReports graphical user interface.
Column order can be customised by setting appropriate group names: group names are sorted ascending: 'group1' will display before 'group2', 'group2' before 'group3', etc.


Here are the default configuration options as provided in opCommon.nmis:

'report_wan_distributions' => {
  'Default WAN Distribution Levels Descending' => {
    "group4" =>{
      "description" => "<=30%",
      "min" => 0,
      "max" => 30,
    },
    "group3" => {
      "description" => ">30% <=70%",
      "min" => 30,
      "max" => 70,
    },
    "group2" =>{
      "description" => ">70% <=90%",
      "min" => 70,
      "max" => 90,
    },
    "group1" => {
      "description" => ">90%",
      "min" => 90,
      "max" => 1000000, 
    },
  },
  'Default WAN Distribution Levels Ascending' => {
    "group1" =>{
      "description" => "<=30%",
      "min" => 0,
      "max" => 30,
    },
    "group2" => {
      "description" => ">30% <=70%",
      "min" => 30,
      "max" => 70,
    },
    "group3" =>{
      "description" => ">70% <=90%",
      "min" => 70,
      "max" => 90,
    },
    "group4" => {
      "description" => ">90%",
      "min" => 90,
      "max" => 1000000, 
    },
  },
}


  • No labels