Files
librenms-librenms/includes/html/graphs/device/rutos_2xx_mobileDataUsage.inc.php
Tony Murray 1c379dcd05 Remove legacy function calls (#12651)
* massive inlines

* fix style and wtf

* remove rrdtool.inc.php include

* fix CommonFunctions namespace issues

* looking for missing class space, fix undefined class issues

* style fixes
2021-03-29 00:25:30 +02:00

32 lines
881 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 = [
'usage_sent' => ['descr' => 'Sent', 'colour' => '008C00'],
'usage_received' => ['descr' => 'Received', 'colour' => '4096EE'],
];
$i = 0;
if (Rrd::checkRrdExists($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';