mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
21 lines
587 B
PHP
21 lines
587 B
PHP
![]() |
<?php
|
||
|
|
||
|
$i = 1;
|
||
|
|
||
|
foreach (dbFetchRows("SELECT * FROM `ucd_diskio` AS U, `devices` AS D WHERE D.device_id = ? AND U.device_id = D.device_id", array($id)) as $disk)
|
||
|
{
|
||
|
$rrd_filename = $config['rrd_dir'] . "/" . $disk['hostname'] . "/ucd_diskio-" . safename($disk['diskio_descr'] . ".rrd");
|
||
|
if (is_file($rrd_filename))
|
||
|
{
|
||
|
$rrd_list[$i]['filename'] = $rrd_filename;
|
||
|
$rrd_list[$i]['descr'] = $disk['diskio_descr'];
|
||
|
$rrd_list[$i]['rra_in'] = "reads";
|
||
|
$rrd_list[$i]['rra_out'] = "writes";
|
||
|
$i++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
include("includes/graphs/generic_multi_bits_separated.inc.php");
|
||
|
|
||
|
?>
|