Files

15 lines
363 B
PHP
Raw Permalink Normal View History

2018-07-21 21:48:32 +02:00
<?php
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/common.inc.php';
2018-07-21 21:48:32 +02:00
2020-09-21 15:40:17 +02:00
$scale_min = 0;
$ds = 'channels';
$colour_area = '9DDA52';
$colour_line = '2EAC6D';
2018-07-21 21:48:32 +02:00
$colour_area_max = 'FFEE99';
2020-09-21 15:40:17 +02:00
$graph_max = 20000;
$unit_text = 'Channels';
$rrd_filename = rrd_name($device['hostname'], ['app', 'asterisk', 'stats', $app['app_id']]);
2018-07-21 21:48:32 +02:00
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/generic_simplex.inc.php';