Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

A full example of a Grouped Availability Report with default settings can be downloaded and viewed HERE

 

Code Block
'report_groupedavailability_levels' => {
      'default' => {
        'good' => {
          'color' => '',
          'description' => '100%',
          'threshold' => 100
        },
        'high' => {
          'color' => '#ffff00',
          'description' => '99 < 100%',
          'threshold' => 99
        },
        'low' => {
          'color' => '#ff8900',
          'description' => '98 < 99%',
          'threshold' => 98
        },
        'lowest' => {
          'color' => '#ff0000',
          'description' => '<98%',
          'threshold' => -1
		} 
      } 
    },