Files
librenms-librenms/html/includes/graphs/device/ucd_io.inc.php

13 lines
293 B
PHP
Raw Normal View History

<?php
$rrd_filename_in = $config['rrd_dir'] . "/" . $device['hostname'] . "/ucd_ssIORawReceived.rrd";
$rrd_filename_out = $config['rrd_dir'] . "/" . $device['hostname'] . "/ucd_ssIORawSent.rrd";
$rra_in = "value";
$rra_out = "value";
include("includes/graphs/generic_bits.inc.php");
?>