2019-06-07 06:39:23 +02:00
|
|
|
<?php
|
2020-09-21 15:40:17 +02:00
|
|
|
|
2019-08-07 14:32:25 +02:00
|
|
|
$name = 'smart_id9';
|
2019-06-07 06:39:23 +02:00
|
|
|
$unit_text = '';
|
|
|
|
|
$unitlen = 20;
|
|
|
|
|
$bigdescrlen = 15;
|
|
|
|
|
$smalldescrlen = 15;
|
|
|
|
|
$colours = 'mega';
|
|
|
|
|
$dostack = 0;
|
|
|
|
|
$printtotal = 0;
|
|
|
|
|
$addarea = 1;
|
|
|
|
|
$transparency = 15;
|
|
|
|
|
|
2022-07-22 16:01:55 -05:00
|
|
|
$rrd_filename = Rrd::name($device['hostname'], ['app', $name, $app->app_id, $vars['disk']]);
|
2019-06-07 06:39:23 +02:00
|
|
|
|
2021-03-28 17:25:30 -05:00
|
|
|
if (Rrd::checkRrdExists($rrd_filename)) {
|
2019-06-07 06:39:23 +02:00
|
|
|
$rrd_list[] = [
|
|
|
|
|
'filename' => $rrd_filename,
|
|
|
|
|
'descr' => 'Power On Hours',
|
|
|
|
|
'ds' => 'id9',
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
require 'includes/html/graphs/generic_multi_line_exact_numbers.inc.php';
|