Skip to content

Commit

Permalink
fix: Updated min/max values for ubnt graphs (#4811)
Browse files Browse the repository at this point in the history
* fix: Updated min/max values for ubnt graphs

* updated min/max
  • Loading branch information
laf authored and murrant committed Oct 20, 2016
1 parent 090c466 commit c1779f0
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<?php

$scale_min = 0;
$scale_max = 100;

require 'includes/graphs/common.inc.php';

// $rrd_options .= " -l 0 -E ";
Expand Down
3 changes: 3 additions & 0 deletions html/includes/graphs/device/ubnt_airmax_AirMaxQuality.inc.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<?php

$scale_min = 0;
$scale_max = 100;

require 'includes/graphs/common.inc.php';

// $rrd_options .= " -l 0 -E ";
Expand Down
3 changes: 3 additions & 0 deletions html/includes/graphs/device/ubnt_airmax_RadioTxPower.inc.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<?php

$scale_min = 0;
$scale_max = 50;

require 'includes/graphs/common.inc.php';

$rrd_options .= ' -l 0 -E ';
Expand Down
3 changes: 3 additions & 0 deletions html/includes/graphs/device/ubnt_airmax_WlStatCcq.inc.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<?php

$scale_min = 0;
$scale_max = 100;

require 'includes/graphs/common.inc.php';

$rrd_options .= ' -l 0 -E ';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<?php

$scale_min = -110;
$scale_max = -50;

require 'includes/graphs/common.inc.php';

// $rrd_options .= " -l 0 -E ";
Expand Down
3 changes: 3 additions & 0 deletions html/includes/graphs/device/ubnt_airmax_WlStatSignal.inc.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<?php

$scale_min = -100;
$scale_max = -20;

require 'includes/graphs/common.inc.php';

//$rrd_options .= " -l 0 -E ";
Expand Down

0 comments on commit c1779f0

Please sign in to comment.