mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
41 lines
936 B
PHP
41 lines
936 B
PHP
<?php
|
|
|
|
$name = 'smart';
|
|
$app_id = $app['app_id'];
|
|
$colours = 'mega';
|
|
$dostack = 0;
|
|
$printtotal = 0;
|
|
$addarea = 1;
|
|
$transparency = 15;
|
|
$scale_min = 0;
|
|
|
|
if (isset($vars['disk'])) {
|
|
$disks = [$vars['disk']];
|
|
} else {
|
|
$disks = get_arrays_with_application($device, $app_id, $name);
|
|
}
|
|
|
|
$smart_enhancements = ['id9'];
|
|
|
|
$int = 0;
|
|
while (isset($disks[$int])) {
|
|
$disk = $disks[$int];
|
|
|
|
if (in_array($rrdVar, $smart_enhancements)) {
|
|
$rrd_filename = rrd_name($device['hostname'], ['app', $name . '_' . $rrdVar, $app_id, $disk]);
|
|
} else {
|
|
$rrd_filename = rrd_name($device['hostname'], ['app', $name, $app_id, $disk]);
|
|
}
|
|
|
|
if (rrdtool_check_rrd_exists($rrd_filename)) {
|
|
$rrd_list[] = [
|
|
'filename' => $rrd_filename,
|
|
'descr' => $disk,
|
|
'ds' => $rrdVar,
|
|
];
|
|
}
|
|
$int++;
|
|
}
|
|
|
|
require 'includes/html/graphs/generic_multi_line_exact_numbers.inc.php';
|