Files
librenms-librenms/html/includes/graphs/port/bits.inc.php
T

11 lines
216 B
PHP
Raw Normal View History

2009-10-27 13:04:16 +00:00
<?php
$rrd_filename = $config['rrd_dir'] . "/" . $device['hostname'] . "/" . safename($port['ifIndex'] . ".rrd");
2009-10-27 13:04:16 +00:00
$rra_in = "INOCTETS";
$rra_out = "OUTOCTETS";
include("includes/graphs/generic_bits.inc.php");
2009-10-27 13:04:16 +00:00
?>