28 lines
503 B
PHP
28 lines
503 B
PHP
<?php
|
|
|
|
/**
|
|
* Observium
|
|
*
|
|
* This file is part of Observium.
|
|
*
|
|
* @package observium
|
|
* @subpackage graphs
|
|
* @copyright (C) Adam Armstrong
|
|
*
|
|
*/
|
|
|
|
include_once($config['html_dir'] . "/includes/graphs/common.inc.php");
|
|
|
|
$mongo_rrd = get_rrd_path($device, "app-mongodb-" . $app['app_id'] . ".rrd");
|
|
|
|
if (rrd_is_file($mongo_rrd)) {
|
|
$rrd_filename = $mongo_rrd;
|
|
}
|
|
|
|
$ds_in = "net_in";
|
|
$ds_out = "net_out";
|
|
|
|
include($config['html_dir'] . "/includes/graphs/generic_data.inc.php");
|
|
|
|
// EOF
|