mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Added Support For TLT RUT2XX Devices * Deleted unnecessary vaules * required changes * delete group unix * updated tests * Update rutos-2xx.json * Update rutos-2xx.yaml * Update rutos-2xx.json
31 lines
950 B
PHP
31 lines
950 B
PHP
<?php
|
|
require 'includes/html/graphs/common.inc.php';
|
|
$rrd_filename = rrd_name($device['hostname'], 'rutos_2xx_mobileDataUsage');
|
|
$scale_min = 0;
|
|
$colours = 'mixed';
|
|
$unit_text = 'Usage';
|
|
$unitlen = 21;
|
|
$bigdescrlen = 15;
|
|
$smalldescrlen = 15;
|
|
$dostack = 0;
|
|
$printtotal = 0;
|
|
$addarea = 1;
|
|
$transparency = 80;
|
|
$data_sources = array(
|
|
'usage_sent' => array('descr' => 'Sent','colour' => '008C00',),
|
|
'usage_received' => array('descr' => 'Received','colour' => '4096EE',),
|
|
);
|
|
$i = 0;
|
|
if (rrdtool_check_rrd_exists($rrd_filename)) {
|
|
foreach ($data_sources as $ds => $var) {
|
|
$rrd_list[$i]['filename'] = $rrd_filename;
|
|
$rrd_list[$i]['descr'] = $var['descr'];
|
|
$rrd_list[$i]['ds'] = $ds;
|
|
$rrd_list[$i]['colour'] = $var['colour'];
|
|
$i++;
|
|
}
|
|
} else {
|
|
echo "file missing: $rrd_filename";
|
|
}
|
|
require 'includes/html/graphs/generic_v3_multiline_float.inc.php';
|