mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			1013 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1013 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
require 'includes/graphs/common.inc.php';
 | 
						|
 | 
						|
$scale_min    = 0;
 | 
						|
$colours      = 'mixed';
 | 
						|
$nototal      = (($width < 550) ? 1 : 0);
 | 
						|
$unit_text    = 'Messages/sec';
 | 
						|
$rrd_filename = $config['rrd_dir'].'/'.$device['hostname'].'/app-mailscannerV2-'.$app['app_id'].'.rrd';
 | 
						|
$array        = array(
 | 
						|
                 'msg_rejected' => array('descr' => 'Rejected'),
 | 
						|
                 'msg_relay'    => array('descr' => 'Relayed'),
 | 
						|
                 'msg_waiting'  => array('descr' => 'Waiting'),
 | 
						|
                );
 | 
						|
 | 
						|
$i = 0;
 | 
						|
$x = 0;
 | 
						|
 | 
						|
if (is_file($rrd_filename)) {
 | 
						|
    $max_colours = count($config['graph_colours'][$colours]);
 | 
						|
    foreach ($array as $ds => $vars) {
 | 
						|
        $x = (($x <= $max_colours) ? $x : 0);
 | 
						|
        $rrd_list[$i]['filename'] = $rrd_filename;
 | 
						|
        $rrd_list[$i]['descr']    = $vars['descr'];
 | 
						|
        $rrd_list[$i]['ds']       = $ds;
 | 
						|
        $rrd_list[$i]['colour']   = $config['graph_colours'][$colours][$x];
 | 
						|
        $i++;
 | 
						|
        $x++;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
require 'includes/graphs/generic_multi_line.inc.php';
 |