Files
librenms-librenms/includes/html/graphs/application/freeswitch_calls.inc.php
Tony Murray 1c379dcd05 Remove legacy function calls (#12651)
* massive inlines

* fix style and wtf

* remove rrdtool.inc.php include

* fix CommonFunctions namespace issues

* looking for missing class space, fix undefined class issues

* style fixes
2021-03-29 00:25:30 +02:00

15 lines
360 B
PHP

<?php
require 'includes/html/graphs/common.inc.php';
$scale_min = 0;
$ds = 'calls';
$colour_area = '9DDA52';
$colour_line = '2EAC6D';
$colour_area_max = 'FFEE99';
$graph_max = 10000;
$unit_text = 'Calls';
$rrd_filename = Rrd::name($device['hostname'], ['app', 'freeswitch', 'stats', $app['app_id']]);
require 'includes/html/graphs/generic_simplex.inc.php';