From 2cdb75f84c65c512464a94f2287b4cc8e9c6e6de Mon Sep 17 00:00:00 2001 From: nagyrobi Date: Tue, 18 Feb 2014 15:24:03 +0100 Subject: Update status_rrd_graph.php Add NTP graphing --- usr/local/www/status_rrd_graph.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/usr/local/www/status_rrd_graph.php b/usr/local/www/status_rrd_graph.php index e920535..4c7c950 100755 --- a/usr/local/www/status_rrd_graph.php +++ b/usr/local/www/status_rrd_graph.php @@ -132,6 +132,14 @@ if ($_GET['option']) { case "captiveportal": $curoption = "allgraphs"; break; + case "ntpd": + if(isset($config['ntpd']['statsgraph'])) { + $curoption = "allgraphs"; + } else { + $curoption = "processor"; + $curcat = "system"; + } + break; default: $curoption = "wan"; break; @@ -229,6 +237,9 @@ foreach($databases as $database) { if(stristr($database, "captiveportal-") && is_array($config['captiveportal'])) { $captiveportal = true; } + if(stristr($database, "ntpd") && isset($config['ntpd']['statsgraph'])) { + $ntpd = true; + } } /* append the existing array to the header */ $ui_databases = array_merge($dbheader, $databases); @@ -430,6 +441,10 @@ function get_dates($curperiod, $graph) { if($curcat == "captiveportal") { $tabactive = True; } else { $tabactive = False; } $tab_array[] = array("Captive Portal", $tabactive, "status_rrd_graph.php?cat=captiveportal"); } + if($ntpd) { + if($curcat == "ntpd") { $tabactive = True; } else { $tabactive = False; } + $tab_array[] = array("NTP", $tabactive, "status_rrd_graph.php?cat=ntpd"); + } if($curcat == "custom") { $tabactive = True; } else { $tabactive = False; } $tab_array[] = array(gettext("Custom"), $tabactive, "status_rrd_graph.php?cat=custom"); if($curcat == "settings") { $tabactive = True; } else { $tabactive = False; } -- cgit v1.1