From f0fb3d447f9c4601121fe3f9ed4b9b148b589aa9 Mon Sep 17 00:00:00 2001 From: Warren Baker Date: Wed, 9 Jan 2013 19:34:16 +0200 Subject: In the case that no bandwidth limits are configured for queues but PRIQ is been used then rather set a default otherwise a value of 0 is used in the CDEFs for RRD --- usr/local/www/status_rrd_graph_img.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/usr/local/www/status_rrd_graph_img.php b/usr/local/www/status_rrd_graph_img.php index 15a096b..d732409 100644 --- a/usr/local/www/status_rrd_graph_img.php +++ b/usr/local/www/status_rrd_graph_img.php @@ -173,7 +173,10 @@ if ($altq_list_queues[$curif]) { break; } $upstream = (($altq->GetBandwidth()*$factor)/8); - $downstream = $upstream; /* XXX: Ugly hack */ + if ($upstream != 0) + $downstream = $upstream; /* XXX: Ugly hack */ + else + $downstream = $upstream = 12500000; $upif = $curif; $downif = "lan"; /* XXX should this be set to something else?! */ } else { -- cgit v1.1