mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
1c379dcd05
* 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
17 lines
314 B
PHP
17 lines
314 B
PHP
<?php
|
|
|
|
require 'includes/html/graphs/common.inc.php';
|
|
|
|
$mysql_rrd = Rrd::name($device['hostname'], ['app', 'mysql', $app['app_id']]);
|
|
|
|
if (Rrd::checkRrdExists($mysql_rrd)) {
|
|
$rrd_filename = $mysql_rrd;
|
|
}
|
|
|
|
$multiplier = 8;
|
|
|
|
$ds_in = 'BRd';
|
|
$ds_out = 'BSt';
|
|
|
|
require 'includes/html/graphs/generic_data.inc.php';
|