diff --git a/html/includes/graphs/application/powerdns_fail.inc.php b/html/includes/graphs/application/powerdns_fail.inc.php index b6cb75438..a1370b86f 100644 --- a/html/includes/graphs/application/powerdns_fail.inc.php +++ b/html/includes/graphs/application/powerdns_fail.inc.php @@ -9,7 +9,7 @@ $rrd_filename = $config['rrd_dir'] . "/" . $device['hostname'] . "/app-powerdns- $array = array('corruptPackets' => array('descr' => 'Corrupt', 'colour' => 'FF8800FF'), 'servfailPackets' => array('descr' => 'Failed', 'colour' => 'FF0000FF'), - 'q_timedout' => array('descr' => 'Timedout', 'colour' => 'FFFF00FF'), + 'q_timedout' => array('descr' => 'Timed out', 'colour' => 'FFFF00FF'), ); diff --git a/html/includes/graphs/generic_multi_simplex_seperated.inc.php b/html/includes/graphs/generic_multi_simplex_seperated.inc.php index 1a19ab8fd..c86192a5e 100644 --- a/html/includes/graphs/generic_multi_simplex_seperated.inc.php +++ b/html/includes/graphs/generic_multi_simplex_seperated.inc.php @@ -2,13 +2,13 @@ include("includes/graphs/common.inc.php"); -$descrlen = "18"; +$descrlen = "12"; $unitlen = "10"; -if($nototal) { $descrlen += "2"; $unitlen += "2";} +if ($nototal) { $descrlen += "2"; $unitlen += "2";} $unit_text = str_pad(truncate($unit_text,$unitlen),$unitlen); -$rrd_options .= " COMMENT:'$unit_text Cur Max'"; -if (!$nototal) { $rrd_options .= " COMMENT:'Total '"; } +$rrd_options .= " COMMENT:'$unit_text Cur Max '"; +if (!$nototal) { $rrd_options .= " COMMENT:' Total '"; } $rrd_options .= " COMMENT:'\\n'"; $colour_iter=0; diff --git a/html/pages/device/apps/powerdns.inc.php b/html/pages/device/apps/powerdns.inc.php index c9f298589..6816fa8da 100644 --- a/html/pages/device/apps/powerdns.inc.php +++ b/html/pages/device/apps/powerdns.inc.php @@ -3,7 +3,7 @@ global $config; $graphs = array('powerdns_latency' => 'Latency', - 'powerdns_fail' => 'Corrupt - Failed - Timedout', + 'powerdns_fail' => 'Corrupt - Failed - Timed out', 'powerdns_packetcache' => 'Packet Cache', 'powerdns_querycache' => 'Query Cache', 'powerdns_recursing' => 'Recursing Queries and Answers',