Files
librenms-librenms/includes/html/graphs/application/mailscanner_reject.inc.php
Tony Murray f3ba8947f7 Use Config helper (#10339)
remove usage of global variable
2019-06-23 00:29:12 -05:00

33 lines
1.0 KiB
PHP

<?php
require 'includes/html/graphs/common.inc.php';
$scale_min = 0;
$colours = 'mixed';
$nototal = (($width < 550) ? 1 : 0);
$unit_text = 'Messages/sec';
$rrd_filename = rrd_name($device['hostname'], array('app', 'mailscannerV2', $app['app_id']));
$array = array(
'msg_rejected' => array('descr' => 'Rejected'),
'msg_relay' => array('descr' => 'Relayed'),
'msg_waiting' => array('descr' => 'Waiting'),
);
$i = 0;
$x = 0;
if (rrdtool_check_rrd_exists($rrd_filename)) {
$max_colours = count(Config::get("graph_colours.$colours"));
foreach ($array as $ds => $var) {
$x = (($x <= $max_colours) ? $x : 0);
$rrd_list[$i]['filename'] = $rrd_filename;
$rrd_list[$i]['descr'] = $var['descr'];
$rrd_list[$i]['ds'] = $ds;
$rrd_list[$i]['colour'] = \LibreNMS\Config::get("graph_colours.$colours.$x");
$i++;
$x++;
}
}
require 'includes/html/graphs/generic_multi_line.inc.php';