Files
librenms-librenms/includes/html/graphs/application/opensips_load.inc.php
Tony Murray 2dea36f70f Remove graph_min (#14561)
* Remove graph_min
it doesn't do anything
(scale_min sets minimum graph scale)
(graph_max shows a line at max on some graphs)

* fix style
2022-11-02 09:55:28 -05:00

27 lines
457 B
PHP

<?php
$scale_min = 0;
$scale_max = 1;
require 'includes/html/graphs/common.inc.php';
$opensips_rrd = Rrd::name($device['hostname'], ['app', 'opensips', $app->app_id]);
if (Rrd::checkRrdExists($opensips_rrd)) {
$rrd_filename = $opensips_rrd;
}
$ds = 'load';
$colour_area = 'F0E68C';
$colour_line = 'FF4500';
$colour_area_max = 'FFEE99';
$graph_max = 1000;
$unit_text = 'Load Average %';
require 'includes/html/graphs/generic_simplex.inc.php';