27 lines
523 B
PHP
27 lines
523 B
PHP
<?php
|
|
|
|
/**
|
|
* Observium
|
|
*
|
|
* This file is part of Observium.
|
|
*
|
|
* @package observium
|
|
* @subpackage graphs
|
|
* @copyright (C) Adam Armstrong
|
|
*
|
|
*/
|
|
|
|
$ds = "AvgSvrTTFB";
|
|
|
|
$colour_area = $config['colours']['graphs']['pkts']['in_area'];
|
|
$colour_line = $config['colours']['graphs']['pkts']['in_line'];
|
|
|
|
$colour_area_in = $config['colours']['graphs']['pkts']['in_max'];
|
|
|
|
$text = "Client";
|
|
|
|
$graph_max = 1;
|
|
$unit_text = "ms to 1st byte";
|
|
|
|
include($config['html_dir'] . "/includes/graphs/generic_simplex.inc.php");
|