23 lines
419 B
PHP
23 lines
419 B
PHP
<?php
|
|
|
|
/**
|
|
* Observium
|
|
*
|
|
* This file is part of Observium.
|
|
*
|
|
* @package observium
|
|
* @subpackage graphs
|
|
* @copyright (C) 2006-2013 Adam Armstrong, (C) 2013-2023 Observium Limited
|
|
*
|
|
*/
|
|
|
|
$rrd_filename = get_rrd_path($device, "aethra-mib_xdsl.rrd");
|
|
|
|
$ds_in = "DsTotBytes";
|
|
$ds_out = "UsTotBytes";
|
|
$format = "octets";
|
|
|
|
include($config['html_dir'] . "/includes/graphs/generic_data.inc.php");
|
|
|
|
// EOF
|