mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
DO NOT DELETE THIS TEXT #### Please note > Please read this information carefully. You can run `./scripts/pre-commit.php` to check your code before submitting. - [x] Have you followed our [code guidelines?](http://docs.librenms.org/Developing/Code-Guidelines/) #### Testers If you would like to test this pull request then please run: `./scripts/github-apply <pr_id>`, i.e `./scripts/github-apply 5926` PR 183 from librenms-agent contains the script to make this work https://github.com/librenms/librenms-agent/pull/183
15 lines
397 B
PHP
15 lines
397 B
PHP
<?php
|
|
|
|
require 'includes/graphs/common.inc.php';
|
|
|
|
$scale_min = 0;
|
|
$ds = 'channels';
|
|
$colour_area = '9DDA52';
|
|
$colour_line = '2EAC6D';
|
|
$colour_area_max = 'FFEE99';
|
|
$graph_max = 20000;
|
|
$unit_text = 'Channels';
|
|
$rrd_filename = rrd_name($device['hostname'], array('app', 'asterisk', 'stats', $app['app_id']));
|
|
|
|
require 'includes/graphs/generic_simplex.inc.php';
|