38 lines
778 B
PHP
38 lines
778 B
PHP
<?php
|
|
|
|
/**
|
|
* Observium
|
|
*
|
|
* This file is part of Observium.
|
|
*
|
|
* @package observium
|
|
* @subpackage graphs
|
|
* @copyright (C) 2006-2013 Adam Armstrong, (C) 2013-2023 Observium Limited
|
|
*
|
|
*/
|
|
|
|
$rrd_filename = get_rrd_path($device, "netstats-udp.rrd");
|
|
|
|
$stats = ['udpInErrors', 'udpNoPorts'];
|
|
|
|
$i = 0;
|
|
foreach ($stats as $stat) {
|
|
$i++;
|
|
$rrd_list[$i]['filename'] = $rrd_filename;
|
|
$rrd_list[$i]['descr'] = str_replace("udp", "", $stat);
|
|
$rrd_list[$i]['ds'] = $stat;
|
|
$rrd_list[$i]['colour'] = 'e34a33';
|
|
if (strpos($stat, "NoPorts") !== FALSE) {
|
|
$rrd_list[$i]['invert'] = TRUE;
|
|
}
|
|
}
|
|
|
|
$colours = 'mixed';
|
|
|
|
$nototal = 1;
|
|
$simple_rrd = 1;
|
|
|
|
include($config['html_dir'] . "/includes/graphs/generic_multi_line.inc.php");
|
|
|
|
?>
|