28 lines
728 B
PHP
28 lines
728 B
PHP
<?php
|
|
|
|
/**
|
|
* Observium
|
|
*
|
|
* This file is part of Observium.
|
|
*
|
|
* @package observium
|
|
* @subpackage graphs
|
|
* @copyright (C) Adam Armstrong
|
|
*
|
|
*/
|
|
|
|
$scale_min = "0";
|
|
|
|
$rrd_filename = get_rrd_path($device, "bng-active-sessions.rrd");
|
|
|
|
include_once($config['html_dir'] . "/includes/graphs/common.inc.php");
|
|
|
|
$rrd_options .= " DEF:value=" . $rrd_filename_escape . ":value:AVERAGE";
|
|
$rrd_options .= " 'COMMENT:Sessions Current Minimum Maximum Average\\l'";
|
|
$rrd_options .= " AREA:value#EEEEEE:'Subscribers '";
|
|
$rrd_options .= " LINE1.25:value#36393D:";
|
|
$rrd_options .= " GPRINT:value:LAST:%6.2lf GPRINT:value:MIN:%7.2lf";
|
|
$rrd_options .= " GPRINT:value:MAX:%7.2lf 'GPRINT:value:AVERAGE:%7.2lf\\l'";
|
|
|
|
// EOF
|